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
My code use this extension method: public static void PostgresqlDatabase(this SupportedDatabasesForEnsureDatabase supported, string connectionString, IUpgradeLog logger)
In the last beta (6.0.0-beta.28), this throws a System.NullReferenceException exception.
It looks easy to fix:
public static void PostgresqlDatabase(this SupportedDatabasesForEnsureDatabase supported, string connectionString, IUpgradeLog logger)
{
PostgresqlDatabase(supported, connectionString, logger, new PostgresqlConnectionOptions());
}
By the way, I think that some private methods could become public. At the moment, we can't provide an IUpgradeLog and a PostgresqlConnectionOptions.