diff --git a/Directory.Build.props b/Directory.Build.props index ffeac1f3b..712d9ae07 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,6 +1,6 @@ - 9.0.1 + 9.0.2 latest true latest diff --git a/Directory.Packages.props b/Directory.Packages.props index 59515d0f6..362c7099e 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -2,7 +2,7 @@ [9.0.0,10.0.0) 9.0.0 - 9.0.1 + 9.0.2 diff --git a/src/EFCore.PG/Query/Internal/NpgsqlParameterBasedSqlProcessorFactory.cs b/src/EFCore.PG/Query/Internal/NpgsqlParameterBasedSqlProcessorFactory.cs index fa467d127..f4cf99980 100644 --- a/src/EFCore.PG/Query/Internal/NpgsqlParameterBasedSqlProcessorFactory.cs +++ b/src/EFCore.PG/Query/Internal/NpgsqlParameterBasedSqlProcessorFactory.cs @@ -27,6 +27,6 @@ public NpgsqlParameterBasedSqlProcessorFactory( /// /// Parameters for . /// A relational parameter based sql processor. - public RelationalParameterBasedSqlProcessor Create(RelationalParameterBasedSqlProcessorParameters parameters) + public virtual RelationalParameterBasedSqlProcessor Create(RelationalParameterBasedSqlProcessorParameters parameters) => new NpgsqlParameterBasedSqlProcessor(_dependencies, parameters); }