We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcdc10c commit a205bfaCopy full SHA for a205bfa
Minimal Order Api/Program.cs
@@ -68,7 +68,7 @@ public static void Main(string[] args)
68
Console.WriteLine($"Order {uniqueIdentifier}: Missing {nameof(order.OrderNumber)}");
69
}
70
71
- if (order.CreatedAt > startDate)
+ if (order.CreatedAt == default)
72
{
73
isValid = false;
74
Console.WriteLine($"Order {uniqueIdentifier}: {nameof(order.CreatedAt)} was not set.");
0 commit comments