Configuring the connection programmatically:
var config = new ClientConfiguration
{
Servers = new List<Uri> {
new Uri("http://localhost:8091/pools")
},
BucketConfigs = new Dictionary<string, BucketConfiguration>
...
There are two basic ways in which you can Insert a document
Create a document, Then insert it
var bucket = cluster.OpenBucket("default");
var document = new Document<dynamic>
{
Id = "doc_net",
Content = new
{
name = &quo...