コード例 #1
0
 public BaseRepo()
 {
     ctx   = new AutoLotEntities();
     table = ctx.Set <T>();
 }
コード例 #2
0
ファイル: BaseRepo.cs プロジェクト: brucehoward-cl/AutoLotDAL
 public BaseRepo()
 {
     _db    = new AutoLotEntities();
     _table = _db.Set <T>();
 }
コード例 #3
0
 public BaseRepo(AutoLotEntities context)
 {
     _db    = context;
     _table = _db.Set <T>();
 }
コード例 #4
0
ファイル: BaseRepo.cs プロジェクト: ch3rag/C-Sharp
 public BaseRepo()
 {
     db    = new AutoLotEntities();
     table = db.Set <T>();
 }