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?
|
|
In sql server, we can issue sql to get data like
what's the linq query to match above sql?
|
|||
|
|
|
|
you may want to use the difference function you could also create your own http://blogs.techrepublic.com.com/programming-and-development/?p=656 |
||||
|