public EFCoreRepositoryWrapper(EFCoreDbContext context)
 {
     _context = context;
     _notes   = new EFCoreNoteRepository(context);
     _users   = new EFCoreRepository <SimpleUser>(context);
 }
Пример #2
0
 public EFCoreRepository(EFCoreDbContext context)
 {
     this.context = context;
 }
 public EFCoreNoteRepository(EFCoreDbContext context) : base(context)
 {
 }