Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Let me explain the problem - hopefully I have defined it well in the title but I want to be sure.

I have a linq query that pulls back a bunch of objects (say Foos). Each Foo holds a reference to a User. Each User holds a reference to a Person:

public class Foo
{
  //properties omitted...
  public User CreatedBy {get;}
}
public class User
{
  //properties omitted...
  public Person Person {get;set;}
}

As the object structure would suggest, in the database, Foo relates many-to-one to User, and User relates many-to-one to Person.

When I run the query, I get a single SELECT for the Foos, then a SELECT each for all the Users and People. Clearly I would much prefer a single SELECT with a couple of joins.

I don't necessarily want to specify in my mapping config that Foos ALWAYS eager fetch the User, or that Users ALWAYS eager fetch the Person, but I would like to be able to specify that in this instance.

Is there a way to do that?

Thanks

David

share|improve this question
What means: "specify that in this instance"? – Stefan Steinegger Aug 9 '10 at 13:01

3 Answers

up vote 3 down vote accepted

All the NHibernate query methods have ways of specifying eager fetching.

For Criteria, you have SetFetchMode.

For HQL, you have [inner|left] join fetch.

For Linq yo have Expand (2.x contrib) / Fetch (3.x).

For SQL you have AddJoin.

share|improve this answer
Thanks. It's Linq I want. Is this new version of Linq to NHibernate available now? I can't find anything about it. – David Aug 9 '10 at 16:11
It's an alpha? I might just leave it for a bit then... – David Aug 11 '10 at 8:29
1  
Alpha is just a name. Microsoft would call a product in the same state "Beta2" or "RC". NHibernate uses continuous integration, so this Alpha actually has less bugs than the stable 2.1.2. – Diego Mijelshon Aug 11 '10 at 10:48

Additionally to Diegos nice answer: You can also use batching. This reduces the N+1 problem without much pain:

use batch-size on class level:

<class name="Person" batch-size="20">
...
</class>

use batch-size on collection level:

<map
    name="SomeCollection"
    batch-size="20">
  ...
</map>

When ever one of these references is loaded, NHibernate loads 20 at once using a query like this:

select ... from Person where user_fk in (23, 34, 6, 667, 6745, 234 ....)

So it turns N+1 to N / 20 + 1, which is pretty good.

share|improve this answer

Both Udi Dahan and Ritesh Rao offer example implementations of dynamic fetching strategies for NHibernate, this should give you a good starting point.

share|improve this answer

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.