I am using Expression.In() as a part of a criteria using NHibernate and for the life of me I can't find any way to make it ignore case. Does anyone know how this can be done or am I going to have to do this a different way?
Not that it probably matters much but here is a sample of how I am using the Expression.In()
ICriteria criteria = Session.CreateCriteria(typeof (Result))
.Add(Expression.In("targetName", {'target1', 'target2'}));