Hello,
I have document structure in Couchbase like this
{
“key” : “xxx”,
“list” :
[
{
“itemA” : “xxx”,
“itemB” :
{“itemB-1” : “xxx”, “itemB-2” : “xxx”}
}
{
"itemA" : "xxx",
"itemB" :
{"itemB-1" : "xxx", "itemB-2" : "xxx"}
}
]
How can I retrive “ItemA” and “itemB-1” level by using Get() or GetJson() or other method?
I saw “NCBC-316: Allow GetJson to support the retrieval of arrays and lists:”(https://www.couchbase.com/issues/browse/NCBC-316)
and tried .NET SDK 1.3.3 but failed.