Is there a reason why I can't perform an Include to include a collection of documents from a query, then load them all in one query, rather than using a for-loop.
var messages = Session.Query<MessageRecipient, MessageInboxIndex>()
.Include(x => x.MessageId)
.ToList();
Session.Load<Message>(messages.Select(x => x.MessageId));
This seems to go back to the database to fetch the objects rather than use the cache...is this by design or can it be fixed?
Paul
MessageRecipientdocs look like and what's the code for theMessageInboxIndex? – Matt Warren Jan 29 '12 at 15:25