Package Description
$ dotnet add package XO.EntityFrameworkCore.NpgsqlJsonSerializerOptionsAn Entity Framework Core plugin that adds support for JsonSerializerOptions to the Npgsql provider. You could use it to influence the property naming policy, or to use JSON source generation. These features are planned for Entity Framework Core 8.0, but until then...
Call the extension method to add the plugin to your DbContext.
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder
.UseNpgsql("Host=localhost")
.UseNpgsqlJsonSerializerOptions();
}
Call UseJsonSerializerOptions to configure JsonSerializerOptions for a specific property.
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<MyEntity>(entity =>
{
entity.Property(x => x.MyJsonProperty)
.HasColumnType("jsonb")
.UseJsonSerializerOptions(new JsonSerializerOptions
{
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
});
});
}
To apply default JsonSerializerOptions to all json and jsonb columns, pass the default instance to the options builder:
Note: When configuring the default serializer options, pass the same instance every time your configuration callback is invoked. Otherwise, Entity Framework will detect the options have changed and construct a new
IServiceProviderfor everyDbContext!
private static readonly JsonSerializerOptions defaultOptions
= new JsonSerializerOptions
{
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
};
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder
.UseNpgsql("Host=localhost")
.UseNpgsqlJsonSerializerOptions(defaultOptions);
}
By default, the plugin configures affected entity properties to use JsonSerializerValueComparer<T> for value equality comparison, which serializes each value to JSON and compares the resulting strings. If you prefer the default value comparer's semantics for your value type(s), or if you just don't want the additional serialization overhead, you can disable it:
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder
.UseNpgsql("Host=localhost")
.UseNpgsqlJsonSerializerOptions(useJsonSerializerValueComparer: false);
}