What the linq query for SQL like and Soudex for sql server 2008?
Posted
by KentZhou
on Stack Overflow
See other posts from Stack Overflow
or by KentZhou
Published on 2009-10-13T17:15:28Z
Indexed on
2010/03/19
0:01 UTC
Read the original article
Hit count: 265
LINQ
|sql-server-2008
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?
© Stack Overflow or respective owner