I've inherited a large c# project and am running into issues updating the data model. I have made my updates in the wysiwyg edmx data modelling editor (vs2010) and the updates seem fine. But it's hard to tell as when I run the program, immediately when it tries to access the database, I get this error:

"SQLite error no such column: Extent2.Country_ID"

Country_ID is a property of an existing entity (which I haven't modified), but I have no idea what "Extent2" is. I did a thorough text search through all related project files and it didn't come up once.

In the exception, the TargetSite reads: {System.Data.Common.DbDataReader ExecuteStoreCommands(System.Data.EntityClient.EntityCommand, System.Data.CommandBehavior)}

Sadly, there isn't much more info; no error numbers or anything. Any ideas?

thanks

link|improve this question
feedback

1 Answer

Extent2 is a table alias in the SQL generated by Entity Framework. It sounds like there's a bad relation or field mapping in your entity model somewhere that's causing the generated SQL commands to not match your actual database structure.

link|improve this answer
You are probably right, but sadly the wysiwyg edmx editor was so terrible that I just ended up not worrying about the relationship within the framework and added just the entity and manually handled the relationship – Jason Spitkoski Apr 17 '11 at 20:17
feedback

Your Answer

 
or
required, but never shown

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