2012-06-21 64 views
0

我需要將這些參數從REST-API查詢轉換爲C#LINQ。 ?Couchbase .Net庫複雜的startKey/endKey類型

降序=真& endkey = [35,37] & startkey = [35,37,{}]

在LINQ此查詢看起來像這樣:

Ç .GetView(「MyView」,「SubView」)。StartKey(startKey).EndKey(endKey).Descending(true);

什麼類型應該是變量startKey和endKey?

我試過串,但在這種情況下,NET庫生成的查詢與參數無效:

降=真& endkey = 「[35,37]」 & startkey =「[35, 37,{}]「

回答