gpt4 book ai didi

c# - 在 NHibernate 的查询中使用 OR 子句

转载 作者:太空狗 更新时间:2023-10-29 17:31:34 26 4
gpt4 key购买 nike

我正在使用 Nhibernate。我正在通过 queryover 方法编写查询。我能够像下面的代码一样编写和子句。它工作正常。

db.QueryOver(Of Users)()
.Where(Function(x) x.Role = "Guest")
.And(Function(x) x.Block = 0)
.And(Function(x) x.APPID = appId)
.List();

但我想使用 Or 子句而不是 And 或两者的组合。我该如何实现。谢谢

最佳答案

这里描述了我们如何使用 NHiberante 构建 OR

语法(在 C# 中如标签所说) 是:

  • Restrictions.Or(restriction1, restriction1)
  • Restrictions.Disjunction().Add(restriction1).Add(restriction2).Add(...

在这种情况下,它可能像这样(同样在 C# 中,而问题似乎使用 VB):

db.QueryOver<Users>()()
.Where((x) => x.Role == "Guest")
.And(Restrictions.Or(
Restrictions.Where<Users>((x) => x.Block == 0)
, Restrictions.Where<Users>((x) => x.APPID == appId)
))
.List<Users>();

关于c# - 在 NHibernate 的查询中使用 OR 子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24817319/

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