public EfGenericRepositoryRegistrar(IDbContextEntityFinder dbContextEntityFinder)
 {
     _dbContextEntityFinder = dbContextEntityFinder;
     Logger = NullLogger.Instance;
 }
Example #2
0
 public EfGenericRepositoryRegistrar(IDbContextEntityFinder dbContextEntityFinder, ILogger <EfGenericRepositoryRegistrar> logger)
 {
     _dbContextEntityFinder = dbContextEntityFinder;
     Logger = logger;
 }
 public EfCoreBasedSecondaryOrmRegistrar(Type dbContextType, IDbContextEntityFinder dbContextEntityFinder)
     : base(dbContextType, dbContextEntityFinder)
 {
 }
Example #4
0
 public EntityCoreCacheRegistrar(IDbContextEntityFinder dbContextEntityFinder)
 {
     _dbContextEntityFinder = dbContextEntityFinder;
 }
Example #5
0
 protected SecondaryOrmRegistrarBase(Type dbContextType, IDbContextEntityFinder dbContextEntityFinder)
 {
     _dbContextType         = dbContextType;
     _dbContextEntityFinder = dbContextEntityFinder;
 }