在域服务插入方法中添加实体

发布于 2024-12-05 22:45:23 字数 799 浏览 0 评论 0原文

我有两个实体,ParentChild,在客户端我创建 Parent,然后调用 context.submitChanges

InsertParent(Parent Parent) 的服务器端,我这样做:

InsertParent(Parent parent)
{
   Child child = this.ObjectContext.Childs.CreateObject();
   parent.child = child;

   if ((parent.EntityState != EntityState.Detached))
   {
     this.ObjectContext.ObjectStateManager.ChangeObjectState(parent, EntityState.Added);
   }
   else
   {
    this.ObjectContext.Parents.AddObject(parent);
   }
}

现在我遇到了两个问题。

在 if else 之前,Parent.id 为 0,在 if else 之后仍然为 0,但在数据库中已填充。

另一个是,Child 被保存,但 Child.ParentId 为 0。

我不明白为什么。

实现这种行为的正确方法是什么?我应该直接在上下文上调用 SaveChanges() 吗?

I have two entities, Parent and Child, at the client side i create Parent and then call context.submitChanges

At the server side in the InsertParent(Parent parent) i do:

InsertParent(Parent parent)
{
   Child child = this.ObjectContext.Childs.CreateObject();
   parent.child = child;

   if ((parent.EntityState != EntityState.Detached))
   {
     this.ObjectContext.ObjectStateManager.ChangeObjectState(parent, EntityState.Added);
   }
   else
   {
    this.ObjectContext.Parents.AddObject(parent);
   }
}

Now i'm having two problems.

Before the if else, Parent.id is 0 and after its still 0 but in the database its populated.

The other one is, Child gets saved but Child.ParentId is 0.

I'm not understanding why.

Whats the correct way to achieve this behaviour? should i call SaveChanges() on the context directly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

蒲公英的约定 2024-12-12 22:45:23

检查并确保 edmx 中 Parent.Id 的 StoreGeneratePattern 属性设置为 Identity。这应该确保它使用插入时的新值进行更新。

我还将其包装在一个事务中,以便您可以在设置父 ID 后添加您的孩子。

using(var scope = new TransactionScope()){
    ObjectContext.Parents.AddObject(parent);
    ObjectContext.SaveChanges(); //parent.id assigned
    parent.child = ObjectContext.Child.CreateObject();
    ObjectContext.SaveChanges();
    scope.Complete(); // commit transaction
}

Check to make sure the StoreGeneratedPattern property on Parent.Id in your edmx is set to Identity. That should make sure it gets updated with the new value on inserts.

I'd also wrap this in a transaction so you can add your child after the parent id is set.

using(var scope = new TransactionScope()){
    ObjectContext.Parents.AddObject(parent);
    ObjectContext.SaveChanges(); //parent.id assigned
    parent.child = ObjectContext.Child.CreateObject();
    ObjectContext.SaveChanges();
    scope.Complete(); // commit transaction
}
dawn曙光 2024-12-12 22:45:23

是的,您应该使用 SaveChanges(),因为这会将您的数据保存到数据库中。

非常简单的示例

您还需要检查parents.Id列和childs Id列,它们被设置为标识和主键,以及两个表之间的关系。

Yes you should use the SaveChanges() because that's what persist your data into the Database.

Very Easy Example

You also need to check the parents.Id column and childs Id column that they are set as identity and as primary keys, and the relations between the two tables.

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