Vlad Saftoiu Alexandru
Results
1
comments of
Vlad Saftoiu Alexandru
I can confirm tha plain `nullableDate.GetValueOrDefault()` will produce an incomplete date format: ```csharp .OrderByDescending(x => x.CurrentDefault.GetValueOrDefault()) //will produce this: ``` ```sql order by nvl(profileope0_.CURRENT_DEFAULT, '01/01/0001 00:00:00') desc ``` which will...