Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've started getting to grips with NHibernate. I'm trying to perform a query that selects all records from a table but with an exclusion filter list of IDs, eg. get me all Products except these ones with these ID values.

Normally in direct T-SQL I'd pass in the IDs to be excluded into a NOT IN clause like so.

SELECT *
FROM Products
WHERE ProductId NOT IN (1,5,9,23,45)

How do I do this in NHibernate using either ICriteria or HQL (but preferably ICriteria)?

share|improve this question

1 Answer

up vote 20 down vote accepted

Try

.Add(Expression.Not(Expression.In("ProductID", new int[] { 1, 5, 9, 23, 45 })))
share|improve this answer
Awesome, that worked perfectly, thanks. Here is the full code I ended up implementing... query.Add(Expression.Not(Expression.In("ProductType.Id", excludedProductTypeIds.ToArray()))); I saw the 'Not' and the 'In' methods, but didn't think to chain them like that. – Sunday Ironfoot Jul 22 '09 at 23:18
Yup, you can do the same thing with the OR and AND commands as well. – Spencer Ruport Jul 23 '09 at 0:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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