EntityFramework(6)中是否有类似UpdateComplexObject的方法?我必须自己写这个方法吗?
我想要使用新图 newSetOfAnimals 修改/删除/添加到 Zoo.Animals() 返回的图的方法。
Animals newSetOfAnimals = GetNewSetOfAnimalsMock();
ZooContext _db = new ZooContext(); // Inherits from db context
Zoo zoo = _db.Zoo().Include(x=>x.Animals).First();
_db.UpdateComplexObject(Zoo.Animals(),newSetOfAnimals);
_db.SaveChanges(); //the database should be consistent after this method with the newSetOfAnimals graph