2013-06-06 50 views
2

在C#中,我使用了linq,其中我使用了MinTime的DateTime。 我將在oracle中轉換此查詢。將C#中的DateTime.MinValue替換爲sql

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值的服務器日期時間。

+0

http://stackoverflow.com/a/687533/342740 – Prix

回答