These lines from NHibernate.Linq.Functions.StringGenerator caught my
attention today while researching
http://stackoverflow.com/questions/2598202/does-nhibernate-linq-support-tolower-in-where-clauses
:

                if (((method.Name == "ToUpper") || (method.Name ==
"ToUpperInvariant")))
                {
                    methodName = "lower";
                }
                else
                {
                    methodName = "upper";
                }

Isn't it supposed to be the other way around?

   Diego


-- 
To unsubscribe, reply using "remove me" as the subject.

Reply via email to