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

EF软删和删除 运用泛型

时间:2017-06-08 14:50:44      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:pre   turn   try   .property   set   let   current   []   删除   

public int Remove(int id)
{
T u1 = context.Set<T>().Find(id);
//context.Set<T>().Remove(u1);
//return context.SaveChanges();

context.Entry(u1).Property("IsDelete").IsModified = true;
context.Entry(u1).Property("IsDelete").CurrentValue = true;

return 0;
}

public int Remove(int[] ids)
{
int counter = ids.Length;
for (int i = 0; i < counter; i++)
{
//T u1 = context.Set<T>().Find(ids[i]);
//context.Set<T>().Remove(u1);
Remove(ids[i]);
}
//return context.SaveChanges();
return 0;
}

  

EF软删和删除 运用泛型

标签:pre   turn   try   .property   set   let   current   []   删除   

原文地址:http://www.cnblogs.com/duanyuerui/p/6962601.html

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