예제 #1
0
 public void Delete(Expression <Func <T, bool> > where)
 {
     this._entity.Where(where).ToList().ForEach(del => _context.Set <T>().Remove(del));
     this._context.SaveChanges();
 }
예제 #2
0
파일: Repository.cs 프로젝트: shpsyte/Smart
 public Repository(SmartContext context)
 {
     this._context = context;
     _entity       = context.Set <T>();
 }
예제 #3
0
 public DefaultRepository(SmartContext context)
 {
     _context = context;
     table    = _context.Set <T>();
 }