This question is locked. New answers and comments are not allowed.
if my grid shows something like this for a date/time column:
04/10/11 14:53:00
and I am using IQueryable on LINQ->SQL. When I apply a filter on that column, I always get a SQL DateTime overflow error.
What can I do to "fix" it to the correct format, so the LINQ->SQL query is correct when filtering on a datetime column?
The original value does come from SQL, and is them placed into a flattened model (public DateTime CreatedAt {get;set;})
04/10/11 14:53:00
and I am using IQueryable on LINQ->SQL. When I apply a filter on that column, I always get a SQL DateTime overflow error.
What can I do to "fix" it to the correct format, so the LINQ->SQL query is correct when filtering on a datetime column?
The original value does come from SQL, and is them placed into a flattened model (public DateTime CreatedAt {get;set;})