我已經映射.hmb.xml中的實體併爲類中的所有實體定義屬性。Nhibernate - 刪除一些簡單的HQL
我有一些基本的成就,並獲得使用下面的代碼的所有記錄。
public List<DevelopmentStep> getDevelopmentSteps()
{
List<DevelopmentStep> developmentStep;
developmentStep = Repository.FindAll<DevelopmentStep>(new OrderBy("Id", Order.Asc));
return developmentStep;
}
我從網籤,我們可以寫HQL,現在的問題是如何執行這個HQL如..
string hql = "From DevelopmentSteps d inner join table2 t2 d.id=t2.Id where d.id=IDValue";
我需要什麼額外的類或其他東西添加到執行此一種HQL?
請幫我----由於
獲取會話是基本的NHibernate的,你不能沒有會話做任何事情。看一下手冊的第一章:「快速入門」,例如「與貓玩耍」:http://nhforge.org/doc/nh/en/index.html#quickstart-playingwithcats – 2010-04-19 07:38:47