Ok. I was asking because I found one of the Include overloads missing
from the async session and just submitted a request for it:
https://github.com/ayende/ravendb/pull/197
Regarding transaction limit - that's not a count of how many documents
your are loading or including. It's a count of how many total
requests you have made to the server. When you request multiple
documents at once, whether via Load(ids[]) or via Include(), you can
request as many as you like and they are made in a single request.
That's kinda the point of includes.
Back to your original problem - if you're not using async sessions,
and you can't pass an integer to .Load(), then there is something
seriously wrong. That's a normal use case and has been in raven
stable for over a year. If you want to show some actual code (gist/
pastebin), perhaps we can help you identify the problem.
On Dec 18, 11:19 am, Eniep Yrekcaz <
peinearydevelopm...@gmail.com>
wrote: