1

次のHQLと同等のDetachedCriteriaが必要です。

select obj
from Objects obj, Text text
where obj.TextId = text.TextId and <Some_Other_Condition>
order by text.Value

ありがとう

4

1 に答える 1

0

それはすべてマップされたオブジェクトに依存します

次に例を示します。

    var criteriaObject = DetachedCriteria.For(typeof(Objects))
        .CreateAlias("TextReference", "text")
        .Add(Restrictions.Eq("Activate", true))
        .AddOrder(new Order("text.Value", true));

それが役に立てば幸い

于 2011-02-17T14:59:07.337 に答える