up vote 4 down vote favorite
share [g+] share [fb]

I want to create a query which has more than 3-4 Expression.Or ? But Expression.Or just let me to add two Expressions inside it.

if (!string.IsNullOrEmpty(keyword))
                query
                    .Add(Expression.Or(
                             Expression.Like("Name", keyword, MatchMode.Anywhere),
                             Expression.Like("LastName", keyword, MatchMode.Anywhere)))
                    .Add(Expression.Or(
                             Expression.Like("Email1", keyword, MatchMode.Anywhere),
                             Expression.Like("Email2", keyword, MatchMode.Anywhere)));

The code above generates "Name like %this% or LastName like %this% AND Email1 like %this% and Email2 like %this.

Thanks in advance.

link|improve this question

76% accept rate
The following is something I found a while back for Entity Framework, the same code works with nHibernate : stackoverflow.com/questions/1554663/… – Alexandre Brisebois Jul 18 '11 at 21:02
@Alexandre: your solution is for a LINQ provider. This question is about the NHibernate Criteria API. – Mauricio Scheffer Jul 18 '11 at 22:18
feedback

2 Answers

up vote 6 down vote accepted

Use Disjunction instead of Or.

link|improve this answer
Thank you very much, I have another question. I want to query another table while querying this one. Forexample i want to get Customers whose id = Group.CustomerId – Barbaros Alp Jan 12 '09 at 1:31
Please create another question for that, it's unrelated to this one. – Mauricio Scheffer Jan 12 '09 at 11:17
this link is broken – Alexandre Brisebois Jul 18 '11 at 17:30
@Alexandre: fixed. – Mauricio Scheffer Jul 18 '11 at 17:54
I really don't understand the point of using Disjunction when you have the Linq api and Expressions – Alexandre Brisebois Jul 18 '11 at 20:56
show 2 more comments
feedback

You can also use || instead of Or( ) or Disjunction( ).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.