I'm trying to get a list of dates from my table, which contains a number of DateTime values in a column called StartTime. My predecessor was using the following SQL:
SELECT DISTINCT SUBSTRING(CONVERT(VARCHAR(50), StartTime, 120), 1, 10)
This results in a distinct list of dates in "yyyy-MM-dd" format for each row in the table. I'm trying to convert this to Linq-to-SQL by doing the following:
query.Select(o => o.StartTime.ToString("yyyy-MM-dd")).Distinct()
However this results in an error "Method 'System.String ToString(System.String)' has no supported translation to SQL."
How can I do this Substring/Convert using Linq-to-SQL?
Thanks!