With the new JSON.NET plugin coming to Npgsql 3.3, we need to create the corresponding plugin for the EF Core provider (depends on #300). It would provide a db context options extension, UseJsonNet(), which would do the following:
- Add the Npgsql JsonNet plugin to the global type mapper
- Add the appropriate RelationalTypeMapping to the NpgsqlTypeMappingSource
- Add the appropriate translators for JSON operations.
With the new JSON.NET plugin coming to Npgsql 3.3, we need to create the corresponding plugin for the EF Core provider (depends on #300). It would provide a db context options extension,
UseJsonNet(), which would do the following: