What the linq query for SQL like and Soudex for sql server 2008?
- by KentZhou
In sql server, we can issue sql to get data like
select * from table where column like '%myword%'
select * from person where Soundex(LastName) = Soundex('Ann')
what's the linq query to match above sql?