Hi everyone!!
I have a lambda expression that has this:
Convert.ToDateTime(a.startTime).TimeOfDay >= Convert.ToDateTime(startTime).TimeOfDay
But, I have to create a procedure in SQL Server and how should be the statement above to SQL statement?
I've tried to use some kinda 'convert(startime, getdate(),8) but it didn't work.
And I forgot to say that 'startTime' is a DateTime field and I'm trying to compare only the time part (forget about the date part).
Thanks!!!