My application uses SQL Server Ce for the database and Entity Framework as the ORM. Now I'm trying to switch to SQL Server Express but I'm having trouble doing so.
UPDATE
So after banging my head for 3 hours I finally figured out that you cannot use an Entity model generated from a SQL Server CE database against a SQL Server (in my case Express version).
I used a Diff program to view the generated files (Designer.cs) for both databases and I noticed these differences in the file:
SQL Server CE SQL Server
FK__Download__000000000000003F FK__Download__PlaneI__0519C6AF
So I have to create two entity models, but how can I interchange between the two in my program?
If I create two entity models, I'll have two classes with the same object names.
Thanks in advance