You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have searched the existing open and closed issues
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.