I have a list of orders, which are connected to a user-table. Each order can contain multiple users.

I then have a search area where an admin can search through all orders by searching for e.g. a last name.

If there is done a search for e.g. Smith, all orders where a user named smith should be shown, but how is this done with NHibernate and Criterion?

I first tried (users is a list of users):

crit.CreateCriteria("Users").Add(Restrictions.Like("LastName", Users))

but with no success.

link|improve this question

possible duplicate of Or statements in criterion – tvanfosson Jul 16 '10 at 14:07
I saw the post but couldn't use the solution for my problem. – Dofs Jul 16 '10 at 19:41
feedback

2 Answers

up vote 0 down vote accepted

use Query Over

IList<Order> Order = Session.QueryOver<Order>().JoinQueryOver<User>(ord=>ord.user).Where(usr=>usr.LastName.IsSensitiveLike  ("Smith",MatchMode.Starts)).List<Order>();
link|improve this answer
feedback

get session in a variable say mySession

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.