gpt4 book ai didi

nhibernate - 使用 nhibernate 划分结果为 "Could not determine member from"

转载 作者:行者123 更新时间:2023-12-04 21:26:47 25 4
gpt4 key购买 nike

这可能很简单,但我似乎对 nhibernate 的工作原理缺乏一些了解。这是我的代码:

ICriteria query = Session.CreateCriteria<TblProjectCategory>();
query = query.CreateCriteria<TblProjectCategory>(x => x.TblProjects)
.Add<TblProject>(x => x.FldCurrentFunding != 0m)
.Add<TblProject>(x => x.FldCurrentFunding / x.FldFundingGoal >= .8m)
.SetResultTransformer(
new NHibernate.Transform.DistinctRootEntityResultTransformer());

return query.List<TblProjectCategory>();

我得到的结果错误是:“无法从 (x.FldCurrentFunding/x.FldFundingGoal) 确定成员”

最佳答案

NHibernate 无法将表达式转换为 sql 语句,因为它不知道如何处理 x.FldCurrentFunding/x.FldFundingGoal。解决方案是将其重写为如下表达式:

ISQLFunction sqlDiv = new VarArgsSQLFunction("(", "/", ")");
(...)
.Add(
Expression.Ge(
Projections.SqlFunction(
sqlDiv,
NHibernateUtil.Double,
Projections.Property("FldCurrentFunding"),
Projections.Property("FldCurrentGoal")
),
0.8m
)
)
(...)

我希望这会给你一些指导

关于nhibernate - 使用 nhibernate 划分结果为 "Could not determine member from",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2043348/

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