vote up 1 vote down star

How to write linq with same function of following sql Like:

select * from table where col like param?
flag

48% accept rate

4 Answers

vote up 0 vote down
var item = from SomeCollection where someCondition select I;
link|flag
vote up 2 vote down

From: http://blogs.microsoft.co.il/blogs/bursteg/archive/2007/10/16/linq-to-sql-like-operator.aspx

Digging into System.Data.Linq.SqlClient namespace, I found a little helper class called SqlMethods, which can be very usefull in such scenarios. SqlMethods has a method called Like, that can be used in a Linq to SQL query:

var query = from c in ctx.Customers
            where SqlMethods.Like(c.City, "L_n%")
            select c;

This method gets the string expression to check (the customer's city in this example) and the patterns to test against which is provided in the same way you'd write a LIKE clause in SQL.

Using the above query generated the required SQL statement:

SELECT CustomerID, CompanyName, ...
FROM   dbo.Customers
WHERE  City LIKE [L_n%]
link|flag
Is it just me, or is this overkill when Contains does what he needs? – Justin Niessner Nov 5 at 15:59
@Justin Niessner: no argument here. I did a Google search before any other answers were listed and this is what I found. – Dinah Nov 5 at 16:00
@Dinah Fair enough. Contains() will usually work for most cases. SqlMethods.Like() is for the more complex cases where the developer wants more control over the generated SQL. – Justin Niessner Nov 5 at 16:04
Very interesting! System.Data.Linq.SqlClient is not available for silverlight at client site. – KentZhou Nov 5 at 17:38
vote up 4 vote down
Table.Where(t => t.col.Contains(param));

...should do the trick.

link|flag
vote up 2 vote down
var selection = records.Where (r => r.Col.Contains (param));
link|flag
2  
StartsWith also translates to LIKE in SQL according to srtsolutions.com/blogs/billwagner/… – Yuriy Faktorovich Nov 5 at 15:56
1  
Interesting, however not obvious. Belongs to tricks you need to know. For better maintainability I would stick with "Contains" or "Like" as Dinah suggested. – Developer Art Nov 5 at 16:02

Your Answer

Get an OpenID
or

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