Is there a way to set the fetchmode to eager for more than one object using linq for nhibernate. There seems to be an expand method which only allows me to set one object. However I need to set it for more than one object. Is this possible? Thanks

link|improve this question

feedback

3 Answers

up vote 15 down vote accepted

just use it more then once.

IList<Entity> GetDataFromDatabase()
{
    var query = session.Linq<Entity>();
    query.Expand("Property1");
    query.Expand("Property2");
    return query.ToList();
}
link|improve this answer
5  
or query.Expand("Property1,Property2"); – Sprintstar Aug 20 '09 at 9:53
2  
Is that an expansion method? Can't find it in NHibernate.Linq v2.0.50727. – Arnis L. Oct 6 '09 at 7:40
I mean, version 1.0.0.0 – Arnis L. Oct 6 '09 at 7:42
1  
It is there, on NHibernate.Linq.Query<T> – liammclennan Jul 15 '10 at 3:22
feedback

The new Linq provider does it a little differently:

var customers = session.Query<Customer>().Fetch(c => c.Orders).ToList();

More here: http://mikehadlow.blogspot.com/2010/08/nhibernate-linq-eager-fetching.html

link|improve this answer
feedback

As far as I can see, this is not equivalent: SetFetchMode hydrates an objects tree and the Expand method retrieves a cartesian product.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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