How to retrieve a list of keys/documents in couchbase database in C#

后端 未结 5 1235
说谎
说谎 2021-01-01 02:01

I\'m totally new to couchbase.

This is the sample code I use for insert and get documents:

using (var bucket = Cluster.OpenBucket())
{
    var docume         


        
5条回答
  •  感情败类
    2021-01-01 02:33

    I concur with Simon as well. Views to find the keys or N1QL. If you have not yet setup or interacted with N1QL, it is a very powerful language and a tutorial can be found here:

    http://docs.couchbase.com/developer/n1ql-dp3/n1ql-intro.html

提交回复
热议问题