コード例 #1
0
 public DbModelRepository(T entity)
 {
     _context = new CyberContext();
     _context.Configuration.LazyLoadingEnabled = false;
     //_idCharacter = idCharactere;
     //Mapper(entity);
 }
コード例 #2
0
 public DbModelRepository(T entity, int idCharactere, CyberContext context)
 {
     _context = context;
     _context.Configuration.LazyLoadingEnabled = false;
     _idCharacter = idCharactere;
     //Mapper(entity);
 }
コード例 #3
0
 public DbGradeRepository()
 {
     _context = new CyberContext();
     _context.Configuration.LazyLoadingEnabled = false;
 }