I can create objects of each table in my database, so the .edmx file is doing it’s job.
Why can’t I create a new dbEntEntities (intellisense only pops up dbNull) object of the .edmx file?
Thanks!

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You may have changed the name of the Entity Container and not have realized it. Open your Entity Diagram, find the Entity Container in the Model Browser and view its properties to see its name.
You may have also created your Entities in a separate namespace. If that’s the case, make sure you include that namespace in the
usingstatements at the top of your code file.A little more detail about your problem (which file you’re trying to instantiate your Entity Container in, etc.) would be helpful.