Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 RavenDB 的新手,想知道这两者之间有什么区别:
和:
var cus = _rdb.Session.Query<Customer>().Take(int.MaxValue) .Where(x => x.Id != "-3" );
没有:
var cus = _rdb.Session.Query<Customer>() .Where(x => x.Id != "-3" );
谢谢
在第一种情况下,您将获得多达 1,024 个项目。在第二种情况下,您将获得多达 128 个项目。
当您尝试使用它时,我们会主动丢弃 int.MaxValue。