I have Fluent NHibernate Linq queries where I check values based on run time arrays. A basic example would be something like:
var array = [1,2,3,4,5,6]; usin
Can you use QueryOver and WhereRestrictionOn instead?
session.QueryOver().WhereRestrictionOn(o => o.CompareVal).IsIn(array).List();