I'm in the process of writing a small asp.net mvc application that is using the northwind.mdf. When building the solution I get this error:

Error 1 The type or namespace name 'Order' could not be found (are you missing a using directive or an assembly reference?)

Order is a table in the northwind database.

any help is most appreciated.

link|improve this question
feedback

1 Answer

You need to fill the gap between the SQL table and the .NET application. The reason that you have an Order table in your SQL database doesn't mean that your .NET application knows anything about it. If you are using LINQ To SQL you could use the VS designer to build strongly typed classes based on your relational schema.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.