public SqlServerDbContextOptionsProvider(
     IServiceProvider serviceProvider,
     IOptions <EntityFrameworkConnectionOptions> options)
 {
     _options         = options.Value;
     _serviceProvider = serviceProvider;
 }
 public PostgresDbContextOptionsProvider(IOptions <EntityFrameworkConnectionOptions> options)
 {
     _options = options.Value;
 }