How to add day to date in Linq to SQL
I just changed the column back to a DateTime.
If you are using the Entity Framework, use the System.Data.Objects.EntityFunctions as below:
c.CMT_TS > System.Data.Objects.EntityFunctions.AddDays(e.Call.CALL_TS, 1)