8 references to SqlDateTime
System.Data (8)
fx\src\data\System\Data\SqlClient\SqlBuffer.cs (1)
508return new SqlDateTime(_value._dateTimeInfo.daypart, _value._dateTimeInfo.timepart);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (2)
858return new SqlDateTime(sqlDays, sqlTime * SqlDateTime.SQLTicksPerMinute).Value; 862return new SqlDateTime(sqlDays, sqlTime).Value;
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (5)
156this = new SqlDateTime(dayticks, timeticks); 208this = new SqlDateTime(day, time); 264return new SqlDateTime(day, time); 669public static readonly SqlDateTime MinValue = new SqlDateTime(MinDay, 0); 670public static readonly SqlDateTime MaxValue = new SqlDateTime(MaxDay, MaxTime);