gpt4 book ai didi

sqlite - EF CORE 中的 DbFunctions.TruncateTime LINQ 等价物

转载 作者:IT王子 更新时间:2023-10-29 06:19:53 32 4
gpt4 key购买 nike

我的 .net 应用程序中有以下正常运行的 LINQ

    public ActionResult Index()
{
Dictionary<DateTime?, List<Event>> result;
result = (from events in db.Events.Include("Activity")
where events.IsActive
group events by DbFunctions.TruncateTime(events.DateTimeFrom) into dateGroup
select new { EventDate = dateGroup.Key, Events = dateGroup.ToList() }).ToDictionary(x => x.EventDate, x => x.Events);

return View(result);
}

当我在 EF Core 中使用它时,我无法使用 DbFunctions。我如何重写它以使其在 Microsoft.EntityFrameworkCore 中工作?如果这有所作为,我正在使用 SQLite。

最佳答案

在 EF6 中,使用 DbFunctions.TruncateTime 代替 DateTime.Date 属性,因为出于某种原因不支持后者。

在 EF Core 中不需要前者,因为现在可以正确识别和翻译 DateTime.Date

group events by events.DateTimeFrom.Date into dateGroup

不幸的是,目前还没有关于所支持内容的文档,因此作为一般经验法则,始终尝试相应的 CLR 方法/属性(如果有)并检查它是否转换为 SQL 以及如何转换。

关于sqlite - EF CORE 中的 DbFunctions.TruncateTime LINQ 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40758784/

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