I'm new to RavenDB and wonder what is the difference between those two:
With:
var cus = _rdb.Session.Query<Customer>().Take(int.MaxValue)
.Where(x => x.Id != "-3" );
Without:
var cus = _rdb.Session.Query<Customer>()
.Where(x => x.Id != "-3" );
thanks