我有下面的類結構:如何用NHibernate加載一個聚集的孫子孫女?
class TestCase {
public IList<Step> Steps { get; set; }
}
class Step {
public IList<Action> Actions { get; set; }
}
class Action { }
我想加載一個TestCase
,所有Step
s和所有Event
S IN一個查詢,避免選擇N + 1點的問題。
This post解決了TestCase
秒(使用IMultiQuery
)加載Step
S的問題,但我怎麼會加載Action
太?