在处理集合时,在EF 6中处理CRUD操作的正确方法是什么?

时间:2015-03-31 15:59:46

标签: c# entity-framework crud

我正在从网页更新对象列表:

实体

    public partial class MyParentType
    {
        public MyParentType()
        {
            this.children = new HashSet<child>();
        }

        public int parentID { get; set; }

        public virtual ICollection<child> children { get; set; }
    }

CRUD操作:

 public class MyRepository : IMyRepository
    {
        private readonly IErrorLogger _logger;
        private readonly CorporateEntities _context;

        public MyRepository(IErrorLogger logger)
        {
            _logger = logger;
            _context = new CorporateEntities();
        }

         public void Update(IEnumerable<MyParentType> parents)
 {
   try
   {
       foreach (var parent in parents)
       {
         if(parent.Id==0)
         {
          _context.MyParentTypes.Add(parent);
         }
         else
         { 
          _context.Entry(parent).State = EntityState.Modified;
          var removedChildren =
                            _context.Children.Where(
                                x => !fuelProcessing.Children.Select(
                                    y => y.ID).Contains(x.ID));
          _context.Children.RemoveRange(removedChildren);

            foreach(var child in parent.children)
            {
               context.Entry(child).State =child.Id>0? EntityState.Modified:EntityState.Added;  
            }
         }
       }

       _context.SaveChanges();
   }
   catch (Exception exception)
   {
     _logger.Error(exception.Message, exception);
   }
    }

}

添加新项目的正确方法是什么,更新现有项目以及删除屏幕上已删除的项目?这看起来非常无穷无尽,我确信有更好的方法。

1 个答案:

答案 0 :(得分:0)

首先,如果您使用虚拟,它会非常慢,我建议您使用预先加载而不是延迟加载。

当您更新父母时,如果您不更新儿童,则不必加载儿童。

如果您还需要加载孩子,您可以一次性获取所有孩子,而不是一个接一个,这也更有效。