If the storage model has the StoreGeneratedPattern=identity attribute set, why should not the conceptual model reflect this in some way? Either in and attribute or in a readonly nature of a property? If i need to pass a value to the reference field.

link|improve this question

22% accept rate
feedback

2 Answers

It should. And it does when it is working correctly. What you are probably seeing is a result of a bug in the designer.

When you set that property in the designer in VS2010 RTM, it only adds an annotation tag in the CSDL and does not add anything in the SSDL, so it doesn't treat it as read-only. Amazingly the same or very similar bug existed in EF 1.0!

If you edit the SSDL section by hand, it will work as advertised in the documentation. You just have to re-do, or merge your changes when you regenerate your model.

link|improve this answer
If you want to avoid the xml-editing portion (and having to track down where the SSDL and CSDL differs), I have an add-in that adds a 'Model Comparer' for EFv4 models to VS2010. It shows differences such as store-gen, data type, nullability, maxlength/precision/scale, missing members, missing entities etc between the three layers (db, SSDL, CSDL), generates reports, and allow easy re-sync of individual differences or all differences. More info, and screencast-demos over at: huagati.blogspot.com/2010/08/… – KristoferA - Huagati.com Aug 25 '10 at 3:34
feedback

We have released a hotfix for the StoreGeneratedPattern issue. Try it out!

MSConnect: http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=37957

Code Gallery: http://archive.msdn.microsoft.com/KB2561001

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.