By default C# compares DateTime objects to the 100ns tick. However, my database returns DateTime values to the nearest millisecond. What\'s the best way to compare two DateT
if (Math.Abs(dt1.Subtract(dt2).TotalSeconds) < 1.0)