如何使用 GraphDiff 更新相关实体?
How to update related entities using GraphDiff?
我有以下型号:
public class Customer
{
public int Id {get; set;}
public string Name {get; set;}
public int AddressId {get; set;}
public virtual Address Address {get; set;}
public virtual ICollection<CustomerCategory> Categories {get; set;}
}
public class CustomerCategory
{
public int Id {get; set;}
public int CustomerId {get; set;}
public int CategoryId {get; set;}
public virtual Category Category {get; set;}
}
public class Address
{
public int Id {get; set;}
public string Street{get; set;}
public virtual PostCode PostCode {get; set;}
}
根据以上内容,并使用 GraphDiff,我想按如下方式更新客户汇总:
dbContext.UpdateGraph<Customer>(entity,
map => map.AssociatedEntity(x => x.Address)
.OwnedCollection(x => x.Categories, with => with.AssociatedEntity(x => x.Category)));
但是上面没有更新任何东西!!
在这种情况下使用 GraphDiff 的正确方法是什么?
GraphDiff 基本上区分了两种关系:owned 和associated。
拥有可以解释为 "being a part of" 意味着任何拥有的东西都会 inserted/updated/deleted 属于它的所有者。
GraphDiff 处理的另一种关系是关联的,这意味着在更新图形时,GraphDiff 只更改关联实体本身的关系,而不是关联实体本身。
当你使用 AssociatedEntity
方法时,子实体的状态不是聚合的一部分,换句话说,你对子实体所做的更改不会被聚合已保存,只是它会更新父导航 属性。
如果你想保存对子实体的更改,请使用 OwnedEntity
方法,所以,我建议你试试这个:
dbContext.UpdateGraph<Customer>(entity, map => map.OwnedEntity(x => x.Address)
.OwnedCollection(x => x.Categories, with => with.OwnedEntity(x => x.Category)));
dbContext.SaveChanges();
我有以下型号:
public class Customer
{
public int Id {get; set;}
public string Name {get; set;}
public int AddressId {get; set;}
public virtual Address Address {get; set;}
public virtual ICollection<CustomerCategory> Categories {get; set;}
}
public class CustomerCategory
{
public int Id {get; set;}
public int CustomerId {get; set;}
public int CategoryId {get; set;}
public virtual Category Category {get; set;}
}
public class Address
{
public int Id {get; set;}
public string Street{get; set;}
public virtual PostCode PostCode {get; set;}
}
根据以上内容,并使用 GraphDiff,我想按如下方式更新客户汇总:
dbContext.UpdateGraph<Customer>(entity,
map => map.AssociatedEntity(x => x.Address)
.OwnedCollection(x => x.Categories, with => with.AssociatedEntity(x => x.Category)));
但是上面没有更新任何东西!!
在这种情况下使用 GraphDiff 的正确方法是什么?
GraphDiff 基本上区分了两种关系:owned 和associated。
拥有可以解释为 "being a part of" 意味着任何拥有的东西都会 inserted/updated/deleted 属于它的所有者。
GraphDiff 处理的另一种关系是关联的,这意味着在更新图形时,GraphDiff 只更改关联实体本身的关系,而不是关联实体本身。
当你使用 AssociatedEntity
方法时,子实体的状态不是聚合的一部分,换句话说,你对子实体所做的更改不会被聚合已保存,只是它会更新父导航 属性。
如果你想保存对子实体的更改,请使用 OwnedEntity
方法,所以,我建议你试试这个:
dbContext.UpdateGraph<Customer>(entity, map => map.OwnedEntity(x => x.Address)
.OwnedCollection(x => x.Categories, with => with.OwnedEntity(x => x.Category)));
dbContext.SaveChanges();