当我尝试使用Npgsql和EF Core生成迁移时,抛出此异常。
The property 'MyClass.MyProperty' is of type 'IDictionary<string, object>' which is not supported by current database provider. Either change the property CLR type or ignore the property using the '[NotMapped]' attribute or by using 'EntityTypeBuilder.Ignore' in 'OnModelCreating'.
仅出于调试目的,我设置了以下HasConversion
代码(使用System.Text.Json
),该代码摆脱了异常。
eb.Property(a => a.MyProperty).HasConversion(
b => JsonSerializer.Serialize(x, new JsonSerializerOptions()),
b => JsonSerializer.Deserialize<IDictionary<string, object>>(x, new JsonSerializerOptions())
).HasColumnType("jsonb");
我可以用Newtonsoft JSON函数替换这两个伪转换函数,但这似乎不是最好的解决方案。 Npgsql EF Core是否为EF Core的.HasConversion
函数提供内置函数?
class MyClass {
public Dictionary<string, object> MyProperty { get; set; }
}