tags:

views:

171

answers:

1

I am able to use the NHibernate Criteria API for an IN statement using

new NHibernate.InExpression()

Is there a way using the Criteria API to get a "NOT IN" statement?

+2  A: 

Use a NotExpression around it.

rodbv