如果存储模型设置了StoreGeneratedPattern = identity属性,为什么概念模型不应该以某种方式反映这一点?属性中的属性还是属性的只读属性?如果我需要将值传递给参考字段。
答案 0 :(得分:5)
我们发布了StoreGeneratedPattern问题的修补程序。试试吧!
MSConnect:http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=37957
答案 1 :(得分:3)
它应该。当它正常工作时它会这样做。您可能看到的是bug in the designer的结果。
在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。令人惊讶的是,EF 1.0中存在相同或非常相似的错误!
如果您手动编辑SSDL部分,它将按照文档中的说明进行操作。您只需重新执行,或在重新生成模型时合并更改。