【发布时间】:2025-12-05 18:25:03
【问题描述】:
在 C# 中,我使用了 linq,在其中我使用了最小值的 DateTime。 我将在 oracle 中转换此查询。
select x
from x in Context.GetRolePlansQuery(AppResources.CurrentUser.Role.RoleId,
AppResources.CurrentUser.Loginid,
AppResources.CurrentUser.Tpa.TpaId) where
x.LAST_STAGE_COMPLETE.ToUpper() == "RECEIVED"
orderby (x.CDC_COMPLETE_DATE.HasValue ? x.CDC_COMPLETE_DATE : DateTime.MinValue) descending
select x
我想知道oracle中Min值的服务器日期时间。
【问题讨论】: