甲骨文查询:
select col1,col2 from table1 where col1=12345 order by col2 desc nulls last;
我正在使用流利的nhibernate。所以我有table1的映射类。我正在使用类似这样的代码来使用 nhibernate 进行排序。
criteria
.AddOrder(Order.Desc(
Projections.Cast(
NHibernateUtil.Decimal,
Projections.Property("col1"))));
我必须在上面的 nibhernate 排序代码中最后添加空值。有什么帮助吗?