vote up 1 vote down star

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?

flag

49% accept rate

1 Answer

vote up 0 vote down

you may want to use the difference function

http://msdn.microsoft.com/en-us/library/system.data.objects.sqlclient.sqlfunctions.difference%28VS.100%29.aspx

you could also create your own

http://blogs.techrepublic.com.com/programming-and-development/?p=656

link|flag
Thank you. As the information said: You cannot call this function directly. This function can only appear within a LINQ to Entities query. I use entity framework as DAL. So how to write it in INQ to Entities query? Say q is EntityQuery<person>, query should be like something as q = q.Where(p => p.LastName.Soundex() == someword);? But I can't do it. – KentZhou Oct 13 at 17:40
If i were you i'd probably create a stored procedure to do this. I dont know of another way. – John Boker Oct 13 at 18:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.