示例#1
0
 public EventStoreSQLRepository(EventStoreSQLContext context)
 {
     _context = context;
 }
示例#2
0
 public Repository(EventStoreSQLContext context)
 {
     Db    = context;
     DbSet = Db.Set <TEntity>();
 }
 public EventStoreSqlRepository(EventStoreSQLContext context)
 {
     this._context = context;
 }
 public EventStoreRepository(EventStoreSQLContext eventStoreSQLContext)
 {
     _eventStoreSQLContext = eventStoreSQLContext;
 }
示例#5
0
 private EventStoreRepository(EventStoreSQLContext eventStoreSQLContext)
 {
     _context = eventStoreSQLContext;
 }