I have this sample code ...
Result = session.QueryOver<Lfee_Exc>().WhereRestrictionOn(x => x.FirstName) .IsIn(ListOfFirstNames).List();
Is there a way to make this case insenstive or uppercase x.ArNumber for my case-sensitive Oracle server?
Convert ListOfFirstNames to upercase, and then:
session.QueryOver<Lfee_Exc>() .Where(Restrictions.In(Projections.SqlFunction( "upper", NHibernateUtil.String, Projections.Property<Lfee_Exc>(x => x.FirstName)), ListOfFirstNames))