I had query that do the job of sorting like the below one
select * from ABC
order by isNull(EndDate, '1/1/2079') desc
[EndDate is the small date time column in the ABC table]
I used like this in my C# code
SortExpression sorter = new SortExpression(ABCFields.EndDate | SortOperator.Descending);
But i need the sort expression that do the ordering same as the above query that do the sorting with '1/1/2079' when it found null value... Please help me out.