3 writes to m_time
System.Data (3)
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (3)
111
m_time
= 0;
179
m_time
= timeTicks;
645
m_time
= st.TimeTicks;
12 references to m_time
System.Data (12)
fx\src\data\System\Data\SQLTypes\SQLDateTime.cs (12)
219
long millisecond = (long)(value.
m_time
/ SQLTicksPerMillisecond + 0.5);
322
return
m_time
;
502
return(x.IsNull || y.IsNull) ? SqlBoolean.Null : new SqlBoolean(x.m_day == y.m_day && x.
m_time
== y.
m_time
);
511
new SqlBoolean(x.m_day < y.m_day || (x.m_day == y.m_day && x.
m_time
< y.
m_time
));
516
new SqlBoolean(x.m_day > y.m_day || (x.m_day == y.m_day && x.
m_time
> y.
m_time
));
521
new SqlBoolean(x.m_day < y.m_day || (x.m_day == y.m_day && x.
m_time
<= y.
m_time
));
526
new SqlBoolean(x.m_day > y.m_day || (x.m_day == y.m_day && x.
m_time
>= y.
m_time
));