码迷,mamicode.com
首页 > 其他好文 > 详细

EF5.0区别于EF4.0的crud区别

时间:2017-04-01 14:59:40      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:stat   entry   change   where   区别   tee   manage   修改   添加   

        public T AddEntity(T entity)
         {
             //EF4.0的写法   添加实体
            //db.CreateObjectSet<T>().AddObject(entity);
            //EF5.0的写法
             db.Entry<T>(entity).State = EntityState.Added;

             //下面的写法统一
             db.SaveChanges();
             return entity;
         }
 
         //实现对数据库的修改功能

         public bool UpdateEntity(T entity)
         {
             //EF4.0的写法
             //db.CreateObjectSet<T>().Addach(entity);
            //db.ObjectStateManager.ChangeObjectState(entity, EntityState.Modified);
             //EF5.0的写法
             db.Set<T>().Attach(entity);
           db.Entry<T>(entity).State = EntityState.Modified;
            return db.SaveChanges() > 0;
       }
 
 

         //实现对数据库的删除功能
         public bool DeleteEntity(T entity)
         {
             //EF4.0的写法
             //db.CreateObjectSet<T>().Addach(entity);
             //db.ObjectStateManager.ChangeObjectState(entity, EntityState.Deleted);
             //EF5.0的写法
            db.Set<T>().Attach(entity);
             db.Entry<T>(entity).State = EntityState.Deleted;
             return db.SaveChanges() > 0;
        }

  

        //实现对数据库的查询  --简单查询
         public IQueryable<T> LoadEntities(Func<T, bool> whereLambda)
         {
             //EF4.0的写法
             //return db.CreateObjectSet<T>().Where<T>(whereLambda).AsQueryable();
             //EF5.0的写法
             return db.Set<T>().Where<T>(whereLambda).AsQueryable();
        }

  

EF5.0区别于EF4.0的crud区别

标签:stat   entry   change   where   区别   tee   manage   修改   添加   

原文地址:http://www.cnblogs.com/ingstyle/p/6655953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!