How to add day to date in Linq to SQL

前端 未结 10 1145
栀梦
栀梦 2020-12-16 13:53

I am writing this code. Here dt is input into the function, as well as someint. The column Exp is a T-SQL date column, which comes as a DateTime through Linq.



        
10条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-16 14:33

    You can move the call to AddDays from the SQL part to the .NET part:

    a.Exp.Value >= new DateTimeOffset(dt).AddDays(-Convert.ToDouble(Someint))
    

提交回复
热议问题