I have a 3-leveled hierarchy of entities: Customer-Order-Line, which I would like to retrieve in entirety for a given customer, using ISession.Get(id). I have the following
I just read Ayende's Blogpost where he used the following Example:
session.CreateCriteria(typeof(Post)) .SetFetchMode("Comments", FetchMode.Eager) .List();
In a Criteria Query to avoid Lazy Loading on one particular Query
Maybe that can help you.