GetView with C# client and millions of rows of data

Hi,
i’m actually submitting a following up question to a previous thread. i’m executing a GetView with millions of rows. I know the data is there, i can query it on the cb admin console.
but when i run my C# command it doesn’t return anything, but steps through the line immediately. is GetView() supposed to be asynchronous? i thought it was a blocking call.

var results = CouchbaseManager.Instance.GetView(“dev_test”, “ticker”,true).Key(“1301 JT Equity”).Limit(1000).Select(b => b);

i tried with and w/out limit().

Thanks in advance

amaiz14 -

It’s a deferred operation, so it won’t be executed until you iterate over the results.

-Jeff