I\'ve built a entity framework model against a 2008 database. All works ok against the 2008 database. When I try to update the entity on a 2005 database I get this error.
For the benefit of people who encounter the same issue but are using Code First, check out my answer here about how to change the ProviderManifestToken
in Code First. It involves creating a DbModelBuilder
manually and passing a DbProviderInfo
instance (with the appropriate token) when calling the model builder's Build
method.