我正在使用Nhibernate。我正在通过queryover方法编写查询。我能够像下面的代码中那样编写and子句。它的工作正常。
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,或两者结合使用。我该如何实施。谢谢
Or
And
语法 (如标签所示在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>();