Is there an existing issue for this?
Description
Npgsql allows to configure the connection settings by code. For example, provide the password at connection time with help of password provider or periodic password rotation on the NpgsqlDatasource.
PostgresqlConnectionManager should take a NpgsqlDatasource and create connection from it.
public PostgresqlConnectionManager(NpgsqlDataSource datasource)
: base(new DelegateConnectionFactory(l => datasource.OpenConnection()))
{
}
What is the impact?
NpgsqlDatasource has been introduced in a more recent Npgsql version than the one currently used and it doesn't target netstandard1.3.
Is there an existing issue for this?
Description
Npgsql allows to configure the connection settings by code. For example, provide the password at connection time with help of password provider or periodic password rotation on the NpgsqlDatasource.
PostgresqlConnectionManager should take a NpgsqlDatasource and create connection from it.
What is the impact?
NpgsqlDatasource has been introduced in a more recent Npgsql version than the one currently used and it doesn't target
netstandard1.3.