gpt4 book ai didi

entity-framework - 获取 Entity Framework 中两个日期之间的天数

转载 作者:行者123 更新时间:2023-12-01 13:30:37 25 4
gpt4 key购买 nike

我想按整数 + 从今天起经过的天数对行进行排序。

然而这个:

var now = DateTime.UtcNow;

db.Items.OrderBy(x => x.SomeInteger + (x.Date - now).Days);

给出以下警告:
The LINQ expression 'orderby' could not be translated and will be evaluated locally.
在 .NET 框架中可以这样做: DbFunctions.DiffDays
ASP.NET 核心中的等价物是什么?

最佳答案

来自 pull request

var lstPeople = cxt
.People.Where(p => EF.Functions.DateDiffDay(p.Birth, DateTime.Now) > 0 )
.ToList();

关于entity-framework - 获取 Entity Framework 中两个日期之间的天数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46105941/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com