检查实体是否是 EF 4.0 中的新实体
我需要检查一个实体是否是新的。如果它是一个 int/identity 主键,我可以检查该键的属性是否有默认值...但对于 Guid,我不能这样做。我可以使用 ObjectContext 或 ObjectStateManager 做些什么来检查并确定有问题的实体是新的还是修改过的?
I need to check if an entity is new. If it was an int/identity primary key, I could just check if the property for the key has a default value...but in the case of a Guid, I can't do this. Is there anything I can do with the ObjectContext or ObjectStateManager to have it check and determine if the entity in question is new vs. modified?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ObjectStateManager.GetObjectStateEntry
ObjectStateManager.GetObjectStateEntry
对于指南,您可以这样做
In the case of a Guid you can do this
如果它是可为空的 Guid,您可以检查它是否有值:
如果它不可为空,请检查默认值或空 GUID:
If it's a nullable Guid, you can check if it has a value:
If it's not nullable, check for default value or an empty GUID: