gpt4 book ai didi

linq - 仅比较 nHibernate Linq 中的 DateTime 值

转载 作者:行者123 更新时间:2023-12-04 13:15:21 24 4
gpt4 key购买 nike

我试图在 nHibernate linq 中比较两个日期(DateTime):

query = query.Where(l => (l.datCriacao.Date == dtLote.Date)

但我收到错误:
NHibernate.QueryException: could not resolve property: datCriacao.Date of: SAGP.Entities.Lote

有谁知道我该如何解决这个问题?谢谢

最佳答案

我解决了在日期之间做一个的问题:

DateTime initialDate, finalDate;
initialDate= DateEntity.Date;
finalDate= new DateTime(DateEntity.Year, DateEntity.Month, DateEntity.Day, 23, 59, 59);
query = query.Where(l => (((l.dateEntity>= initialDate) && (l.dateEntity<= finalDate))

关于linq - 仅比较 nHibernate Linq 中的 DateTime 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1724239/

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