asp.net – 实体框架删除子对象

前端之家收集整理的这篇文章主要介绍了asp.net – 实体框架删除子对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有两个没有任何级联删除的表.我想删除所有子对象的父对象.我是这样做的
//get parent object
return _dataContext.Menu.Include("ChildMenu").Include("ParentMenu").Include("Pictures").FirstOrDefault(m => m.MenuId == id);
//then i loop all child objects
var picList = (List<Picture>)menu.Pictures.ToList();

for (int i = 0; i < picList.Count; i++)
 {
  if (File.Exists(HttpContext.Current.Server.MapPath(picList[i].ImgPath)))
  {
     File.Delete(HttpContext.Current.Server.MapPath(picList[i].ImgPath));
  }
  if (File.Exists(HttpContext.Current.Server.MapPath(picList[i].ThumbPath)))
  {
     File.Delete(HttpContext.Current.Server.MapPath(picList[i].ThumbPath));
  }

  //**what must i do here?**
  //menu.Pictures.Remove(picList[i]);
  //                DataManager dm = new DataManager();
  //                dm.Picture.Delete(picList[i].Id);

  //menu.Pictures.de
  //_dataContext.SaveChanges();
  //picList[i] = null;

}

//delete parent object
_dataContext.DeleteObject(_dataContext.Menu.Include("ChildMenu").Include("ParentMenu")
    .Include("Pictures").FirstOrDefault(m => m.MenuId == id););
_dataContext.SaveChanges();

解决方法

这足以设置
<OnDelete Action="Cascade" />

对于主协会在模型的CSDL part中结束.在这种情况下,您的代码将起作用.

原文链接:https://www.f2er.com/aspnet/249173.html

猜你在找的asp.Net相关文章