Hello again me,
If i want to use my own serializer (NamingStrategy - because we have document save with this naming and then query language doesnt work). So i use own serialzer. Do I miss something?
var jsonSettings = new JsonSerializerSettings()
{
NullValueHandling = NullValueHandling.Ignore,
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
DateTimeZoneHandling = DateTimeZoneHandling.Utc,
ContractResolver = new DefaultContractResolver
{
NamingStrategy = new DefaultNamingStrategy()
}
};
clusterOptions.Serializer = new DefaultSerializer(jsonSettings, jsonSettings);
With this bootstrap failed.