GetView returns null IViewRow objects

Hi,
with a lucky trial I solved the problem: I replaced the call

  var view = couchbaseClient.GetView("beer", "by_name");

with the overload

  var view = couchbaseClient.GetView("beer", "by_name", true); 

Cheers!!