How do I grok NHibernate's QueryOver API?
Posted
by
Brant Bobby
on Programmers
See other posts from Programmers
or by Brant Bobby
Published on 2011-08-24T17:06:44Z
Indexed on
2012/11/05
17:17 UTC
Read the original article
Hit count: 321
I've run into the limits of what NHibernate 3.0's LINQ provider is capable of and decided it's time to learn about one of the more powerful (or at least feature-complete) options: the QueryOver
API.
The problem is, I have zero experience with ICriteria
, and all of the tutorials I've been able to find online either:
- Assume I'm an
ICriteria
expert and simply show me how to convert ICriteria code to the new fluent interface, or - Are trivial "here's how you do an inner join" examples that don't really help me understand more complex concepts like projections, subqueries, requirements, or whatever other magic the API is capable of.
What should I read to really learn about QueryOver, and how to make full use of it?
© Programmers or respective owner