Ya 开发者_开发知识库is this possible :) ?
You can change the fetch mode per query dynamically.
IList cats = sess.CreateCriteria(typeof(Cat))
.Add( Expression.Like("Name", "Fritz%") )
.SetFetchMode("Mate", FetchMode.Eager)
.SetFetchMode("Kittens", FetchMode.Eager)
.List();
See section 12.5 of the documentation.
For queries - yes :)
精彩评论