相当于EF核心中的DbFunctions.AddSeconds

时间:2019-05-14 22:32:52

标签: entity-framework-core

EF核心中是否有以下等效代码?该代码是从EF 6移植的。

where myEntity.CreateDate <= DbFunctions.AddSeconds(DateTime.Now, -60)

1 个答案:

答案 0 :(得分:0)

您尝试过吗?

where myEntity.CreateDate <= DateTime.Now.AddSeconds(-60)