HI,
Porting to postgreSQL
We have a lot of varchar index fields , which are defined
CREATE INDEX "something-key2"
ON Table1( lower (name));
and they need to be searched like where lower(name)=:p1
can I somehow add lower to search without using linq.sql .
I mean that old delphi code om.find.where(dic.something.name=aname) would generate
sql ... where lower(A.name) = :p1