I have a DateTime property in the data returned by a service that looks like
"SDateTime":"2014-06-29T03:30:00.000"
.
I need to write a query to get a collection which has the date less than "2014-06-26T03:30:00.000" and greater than "2014-06-23T03:30:00.000"
How to write a filter for the dateTime?
Thanks.