NHibernate Linq中Null值排序的解决方法

富昕
2023-12-01

在Nhibernate Linq的查询中如何实现Order by Nulls Last 和Order by Null First的功能呢?

方法如下:

OrderByDescending(x => x.Time ?? DateTime.MinValue))

或者

OrderByDescending(x => x.Time ?? DateTime.MaxValue))

 类似资料: