10 references to MaxValue
System.Data (2)
fx\src\data\System\Data\Common\SQLTypes\SQLDateTimeStorage.cs (1)
33
SqlDateTime min = SqlDateTime.
MaxValue
;
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (1)
276
return SqlDateTime.
MaxValue
;
System.Workflow.Runtime (8)
Hosting\SqlWorkflowPersistenceService.cs (6)
182
command.Parameters.Add(this.dbResourceAllocator.NewDbParameter("@ownedUntil", ownedUntil == DateTime.MaxValue ? SqlDateTime.
MaxValue
: ownedUntil));
258
command.Parameters.Add(this.dbResourceAllocator.NewDbParameter("@ownedUntil", ownedUntil == DateTime.MaxValue ? SqlDateTime.
MaxValue
: ownedUntil));
307
command.Parameters.Add(this.dbResourceAllocator.NewDbParameter("@ownedUntil", ownedUntil == DateTime.MaxValue ? SqlDateTime.
MaxValue
: ownedUntil));
372
command.Parameters.Add(this.dbResourceAllocator.NewDbParameter("@ownedUntil", ownedUntil == DateTime.MaxValue ? SqlDateTime.
MaxValue
: ownedUntil));
424
command.Parameters.Add(this.dbResourceAllocator.NewDbParameter("@ownedUntil", timeout == DateTime.MaxValue ? SqlDateTime.
MaxValue
: timeout));
1003
item.NextTimer = sub == null ? SqlDateTime.
MaxValue
: sub.ExpiresAt;
Tracking\SqlTrackingQuery.cs (2)
210
if (opt.StatusMaxDateTime > SqlDateTime.
MaxValue
.Value)
211
param.Value = SqlDateTime.
MaxValue
.Value;