我见过很多这样的问题,但是那些人正在调用 .Add 方法来处理我不是的多对多关系。我正在使用 WebApi
我是否想调用 .Clear() 然后在实体框架 5 中重新添加更新的实体,或者它应该是自动的,我做错了什么?
我正在使用工作单元和通用实体框架存储库模式。
这是相关代码:
public HttpResponseMessage Put(PromDto promDto)
{
var creditCardsIds = string.IsNullOrEmpty(promDto.CreditCards) ? null : promDto.CreditCards.Split(',').Select(int.Parse);
var branchesIds = string.IsNullOrEmpty(promDto.Branches) ? null : promDto.Branches.Split(',').Select(int.Parse);
var promotion = Uow.Promotions.GetById(promDto.Id);
promotion.CreditCards = creditCardsIds != null ? Uow.CreditCards.GetByPredicate(t => creditCardsIds.Contains(t.Id)).ToList() : null;
promotion.Branches = branchesIds != null ? Uow.Branches.GetByPredicate(t => branchesIds.Contains(t.Id)).ToList() : null;
if (ModelState.IsValid)
{
Uow.Promotions.Update(promotion);
Uow.Commit();
return new HttpResponseMessage(HttpStatusCode.NoContent);
}
throw new HttpResponseException(HttpStatusCode.BadRequest);
}
在上下文中
modelBuilder.Entity<Branch>().
HasMany(p => p.Promotions).
WithMany(s => s.Branches).
Map(
m =>
{
m.MapLeftKey("BranchId");
m.MapRightKey("PromotionId");
m.ToTable("Branch_Promotion");
});
modelBuilder.Entity<Promotion>().
HasMany(tt => tt.CreditCards).
WithMany(p => p.Promotions).
Map(
m =>
{
m.MapLeftKey("PromotionId");
m.MapRightKey("CreditCardId");
m.ToTable("Promotion_CreditCard");
});
我应该叫这个吗?
promocion.CreditCards.Clear();
promocion.Branches.Clear();
提前致谢。吉列尔莫。