检查实体是否是 EF 4.0 中的新实体

发布于 2024-10-21 11:25:40 字数 147 浏览 2 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

べ繥欢鉨o。 2024-10-28 11:25:40

ObjectStateManager.GetObjectStateEntry

using (MyContext context = new MyContext())
{
    ObjectStateManager objectStateManager = context.ObjectStateManager;
    EntityState state = objectStateManager.GetObjectStateEntry(obj).State;
}

ObjectStateManager.GetObjectStateEntry

using (MyContext context = new MyContext())
{
    ObjectStateManager objectStateManager = context.ObjectStateManager;
    EntityState state = objectStateManager.GetObjectStateEntry(obj).State;
}
百善笑为先 2024-10-28 11:25:40

对于指南,您可以这样做

if(foo.GuidProperty == default(Guid))
{

}

In the case of a Guid you can do this

if(foo.GuidProperty == default(Guid))
{

}
怕倦 2024-10-28 11:25:40

如果它是可为空的 Guid,您可以检查它是否有值:

if (entity.MyGuid.HasValue)
{
  // hooray!
}

如果它不可为空,请检查默认值或空 GUID:

if (entity.MyGuid != default(Guid))
{
  // hooray!
}

if (entity.MyGuid != Guid.Empty)
{
  // hooray!
}

If it's a nullable Guid, you can check if it has a value:

if (entity.MyGuid.HasValue)
{
  // hooray!
}

If it's not nullable, check for default value or an empty GUID:

if (entity.MyGuid != default(Guid))
{
  // hooray!
}

if (entity.MyGuid != Guid.Empty)
{
  // hooray!
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文