diff --git a/src/EFCore.PG/Storage/Internal/NpgsqlTypeMappingSource.cs b/src/EFCore.PG/Storage/Internal/NpgsqlTypeMappingSource.cs index ca7140f19..c2d7adcb8 100644 --- a/src/EFCore.PG/Storage/Internal/NpgsqlTypeMappingSource.cs +++ b/src/EFCore.PG/Storage/Internal/NpgsqlTypeMappingSource.cs @@ -742,7 +742,8 @@ public NpgsqlTypeMappingSource( // In addition, at least in theory users may decide to map to JSON instead of array even outside JSON documents. case "jsonb" or "json" when modelClrType is not null: return base.FindCollectionMapping( - new RelationalTypeMappingInfo(modelClrType, (RelationalTypeMapping?)elementMapping, storeType), + new RelationalTypeMappingInfo( + modelClrType, (RelationalTypeMapping?)elementMapping, storeTypeName: storeType, storeTypeNameBase: storeType), modelClrType, providerClrType, elementMapping);