I have a large MVVM-type solution which I originally wrote using VS2010 Express with .NET4. The Model uses Entities to access a SQL Server 2012 database.
I managed to lose the Model project recently, which didn't seem a big deal, as it really consists of the Auto-generated Entities with a few minor modifications. I have therefore recreated the model project using VS2012 with .NET4.5 and EF5. I have upgraded the ViewModel to .NET4.5 and have imported EntityFramework using the package manager.
The problem is, my ViewModel (a separate Class Library) throws several compile-time errors which I cannot figure out. These revolve around:
- The main Entities class (in my case, CN2Entities) no longer has a constuctor which takes a connection string. This is confirmed by autocomplete, which only offers a parameterless constructor.
The individual database object classes which map to database tables, such as "Addresses" no longer contain their static members. For example:
address_ = Address.CreateAddress(-1);
This code used to provide me with a nice, empty address record to fill and add to the database. This is no longer valid. In fact, the only static members of the Address class appear to be "Equals" and "ReferenceEquals".
- The main Entities class no longer contains the AddToAddress(Address) function, which would then take the new Address object (representing a row of the Addresses table) and add it to the database. I would then call Entities.SaveChanges() to commit the addition. This function still seems to be present.
Can anyone please help me with what is going on? Is this something to do with the new way EF5 works or do I have a corrupted solution which is not providing me with the correct references?