I want to do a query with dates this is my sample tsql:
select * from Bookings where StartTime = \'2/15/2014\'
the starttime has value \'2/15/2
I believe you could also do this:
select * from Bookings where StartTime::date = '2014-2-15'