Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

NHibernate eager loading can be done using Fetch and FetchMany, as described here http://mikehadlow.blogspot.com/2010/08/nhibernate-linq-eager-fetching.html

What is the difference between these two methods and under what circumstance would each be used?

share|improve this question

1 Answer

up vote 53 down vote accepted

Fetch should be used for references and FetchMany for collections.

This is particularly important because only FetchMany can be combined with ThenFetchMany to fetch "grandchildren" collections.

Example:

session.Query<User>()
       .FetchMany(u => u.Orders)
       .ThenFetchMany(o => o.OrderItems)
share|improve this answer
2  
Is there a problem using Fetch() on collections if you're not planning on calling ThenFetch() afterwards? – henriksen Feb 2 '11 at 12:59
I think it works. – Diego Mijelshon Feb 2 '11 at 13:28
@Diego Mijelshon since both Fetch and FetchMany work, what is the difference? – hardywang Jan 12 '12 at 0:48
@hardywang: the way they can be chained to fetch more levels. Just look at the method signatures. – Diego Mijelshon Jan 12 '12 at 10:43
Good point. Thanks – yonexbat Feb 28 at 9:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.