hi again,
just came up with this error in Entity Framework
the reason is because my development using SQL2008 express edition but the preproduction using SQL2005
and the solution is fairly simple
after trying up for 2 hours :D
until then
just came up with this error in Entity Framework
the reason is because my development using SQL2008 express edition but the preproduction using SQL2005
and the solution is fairly simple
Open your EDMX in a file editor (or “open with…” in Visual Studio and select XML Editor). At the top you will find the storage model and it has an attribute ProviderManifestToken. This has should have the value 2008. Change that to 2005, recompile and everything works
after trying up for 2 hours :D
until then
Comments