I have Visual Studio 2008:
- I can create Entity Framework models on existing tables in a SQL Server 2005 database.
- I can create Entity Framework models on tables I create in a local SQL Server 2008 database files.
However, when I add a new table to the SQL Server 2005 database, then try to create an Entity Framework model on it, it lets me click the little checkbox next to the table and finish, but the .edmx/...Designer.cs file consists only of four methods but nothing about the table that I selected, as if the I hadn't selected it.
- What could be causing code not to be generated on the table I selected?
- Where could I look for error messages regarding the attempted creation of code for this table?