R – Entity Framework: “The member in the conceptual model is not present in the OSpace”

entity-frameworksilverlightwcf-ria-services

I'm using RIA Services July CTP in a Silverlight app and when I change the name of a navigation property I get the following error:

Error 119 The Member 'TestUsers' in the conceptual model type 'MyModel.UserGroup' is not present in the OSpace type 'MyApp.Web.UserGroup'.

Is there an extra step when changing the name to a navigation property?

Best Answer

Well when you say you changed the name of a navigation property, do mean you changed it in the EF model Designer / EDMX file? Or just in the CLR?

You need to change it in both places.

Hope it is just this simple,

Alex James