From eb6e346b11f44ffc0f71e8a193e1e6faa113be90 Mon Sep 17 00:00:00 2001 From: Victor Irzak Date: Wed, 20 Nov 2024 02:10:58 +0000 Subject: [PATCH] Restore virtual modifier --- .../Query/Internal/NpgsqlParameterBasedSqlProcessorFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }