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