my code below . what i am missing
var clientConfiguration = new ClientConfiguration();
clientConfiguration.Servers = new List
List
Cluster Cluster = new Cluster(clientConfiguration);
var bucket = Cluster.OpenBucket();
var result = bucket.Query
foreach (var row in result)
{
dynamic propJSON = JsonConvert.SerializeObject(row);
//propJSON not contain id
}
I want id for updating record

Replies
Know the answer? Post it — somebody with the same question will find it here.