Type or namespace could not be found
- by Jason Shultz
I'm using LINQ to SQL to connect my database to my home page. I created my datacontext (named businessModel.dbml) In it I have two tables named Category and Business.
In home controller I reference the model and attempt to return to the view the table:
var dataContext = new businessModelDataContext();
var business = from b in…