Page 1 of 1

Soundex in Entity Framework

Posted: Tue 24 Feb 2009 09:37
by markaw
Hi,

Is there a way for me to user soundex() in my Oracle Query from Entity Framework?

Best regards!

Posted: Thu 26 Feb 2009 08:24
by AndreyR
You can use Entity SQL like following:

Code: Select all

var q = db.Address.Where("Devart.Data.Oracle.SOUNDEX(it.City) = 'B340'");