Hi,
Im trying to set up Json Serializer settings in the startup.cs class for couchbase. I have no idea on how this is actually done, current code looks something like this,
private static void AddCouchbaseDependencies(IServiceCollection services, OutboundConfiguration outboundConfiguration)
{
var couchbaseConfiguration = outboundConfiguration.Couchbase.FirstOrDefault(x => x.UniqueIdentifier == "TestCouchbase");
var testCouchbaseConfig = new testCouchbaseConfig(couchbaseConfiguration );
services.AddSingleton(testCouchbaseConfig );
services.AddCouchbase(client =>
{
client.Servers = testCouchbaseConfig .GetServersAddress().ToList();
}).AddCouchbaseBucket<ITestBucketProvider>(bucketName, password);
}
this method inturn is called from configureServices method in the startup.cs