internal string Configure(PostgresServiceInfo si, PostgresProviderConnectorOptions configuration)
 {
     UpdateConfiguration(si, configuration);
     return(configuration.ToString());
 }
 public PostgresProviderConnectorFactory(PostgresServiceInfo sinfo, PostgresProviderConnectorOptions config, Type type)
 {
     _info   = sinfo;
     _config = config ?? throw new ArgumentNullException(nameof(config));
     _type   = type;
 }