在域服务插入方法中添加实体
我有两个实体,Parent
和 Child
,在客户端我创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查并确保 edmx 中 Parent.Id 的 StoreGeneratePattern 属性设置为 Identity。这应该确保它使用插入时的新值进行更新。
我还将其包装在一个事务中,以便您可以在设置父 ID 后添加您的孩子。
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.
是的,您应该使用 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.