Reputation: 14145
I have 350 000 items inside ravendb. With simple session.Query
session.Query
I'm retrieving 128 documents. Is there solution to retrieve all 350 000 documents in one db roundtrip?
Upvotes: 0
Views: 40
Reputation: 22956
You can use the streaming API for that.
Upvotes: 2