diff --git a/src/EFCore.PG/Storage/Internal/Mapping/NpgsqlEnumTypeMapping.cs b/src/EFCore.PG/Storage/Internal/Mapping/NpgsqlEnumTypeMapping.cs
index dcf7902e8..e9faf4f6c 100644
--- a/src/EFCore.PG/Storage/Internal/Mapping/NpgsqlEnumTypeMapping.cs
+++ b/src/EFCore.PG/Storage/Internal/Mapping/NpgsqlEnumTypeMapping.cs
@@ -10,27 +10,21 @@ namespace Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping
{
public class NpgsqlEnumTypeMapping : RelationalTypeMapping
{
- [NotNull] static readonly NpgsqlSqlGenerationHelper SqlGenerationHelper =
- new NpgsqlSqlGenerationHelper(new RelationalSqlGenerationHelperDependencies());
-
+ [NotNull] readonly ISqlGenerationHelper _sqlGenerationHelper;
[NotNull] readonly INpgsqlNameTranslator _nameTranslator;
- [CanBeNull] readonly string _storeTypeSchema;
-
///
/// Translates the CLR member value to the PostgreSQL value label.
///
[NotNull] readonly Dictionary