It's possible to round this DateTime to te nearest 10 minute value, using SQL functions?
Eg.:
input: '09-22-2007 15:04:36.850'
output: '09-22-2007 15:00:00.000'
input: '09-22-2007 15:14:36.850'
output: '09-22-2007 15:10:00.000'
..
input: '09-22-2007 15:54:36.850'
output: '09-22-2007 15:50:00.000'
Seconds and nanos not necessary to '00.000' (but it would be great :))