gpt4 book ai didi

Nhibernate:限制为 2 列之和

转载 作者:行者123 更新时间:2023-12-04 00:08:37 24 4
gpt4 key购买 nike

我可以使用 HNibernate Criteria 创建这个 sql 查询吗:

Select * from Table1 where Column1 > (Column2 + Column3)

所有 3 列都是 int32。谢谢

最佳答案

好吧,在第 n 次阅读关于这个问题的问题后,我决定编写一个不包括编写 SQL 的实现。

您可以在 http://savale.blogspot.com/2011/04/nhibernate-and-missing.html 查看实现情况你可以用它来写:

criteria.Add(
Restrictions
.GeProperty("Prop1",
new ArithmeticOperatorProjection("+",
NHibernateUtil.Int32,
Projections.Property("Prop2"), Projections.Property("Prop3")
)
)
);

关于Nhibernate:限制为 2 列之和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4243890/

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