Nhibernate - How to get rid of unwanted text cast
- by Nicolas Cornu
Hello,
I am using Nhibernate 2 and PostgreSql
The above code generate a query with a cast on expression
res = _session.CreateCriteria(typeof(C))
.Add(Restrictions.Eq("Exp", Exp))
.AddOrder(new Order("Fr", false))
.SetMaxResults(MW)
.List<C>();
Exp is a character varying(30)
In the query: SELECT ... FROM table WHERE Exp = 'text':: text ...
I want to get rid of cast 'text":: text beacause the index is not used.
Nicolas