Support set JSON options serialisation
Support set JSON options serialisation in UseFileBaseContextDatabase, for example, adding a converter like GeoJSON4STJ.
options.UseFileBaseContextDatabase(location: "userDb", applyServices: services =>
{
services.ConfigureJsonSerializerOptions(options =>
{
options.Converters.Add(new GeoJsonConverterFactory());
});
});