Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a procedure in SQL that I am trying to turn into Linq:

SELECT O.Id, O.Name as Organization
FROM Organizations O
JOIN OrganizationsHierarchy OH ON O.Id=OH.OrganizationsId
where OH.Hierarchy like '%/12/%'

The line I am most concerned with is:

where OH.Hierarchy like '%/12/%'

I have a column that stores the hierarchy like /1/3/12/ for example so I just use %/12/% to search for it.

My question is, what is the Linq or .NET equivalent to using the percent sign?

share|improve this question
Your question has at least 5 votes for the like-operator tag. Could I kindly request that you suggest sql-like as a synonym? – FreshPrinceOfSO Apr 2 at 18:36
Of course. Done. – Matt Dell Apr 11 at 14:03

7 Answers

up vote 177 down vote accepted
.Where(oh => oh.Hierarchy.Contains("/12/"))

You can also use .StartsWith() or .EndsWith().

share|improve this answer
Will using StartsWith() or EndsWith() will fire a query ? I mean, will the code be translated into a Query or the results will be filtered in the object after retrieval from the DB ? – Danny Sep 18 '12 at 6:25
1  
No. StartsWith() and EndsWith() are part of the predicate / filter. Execution continues to be deferred. – andleer Sep 18 '12 at 16:08
tried that got NullReferenceException: Object reference not set to an instance of an object. So it doesn't like it when in my case a.Address1.StartsWith(Address1) and a.Address1 is null – MikeT Jan 25 at 17:33
Correct. That has nothing to do with StartsWidth. Your dependent object Address1 doesn't exist in your join. – andleer Jan 25 at 17:46
yep got round it by using several where clauses wrapped in null checks so: if(string.isnullorempty(searchField)) results = results.where(a => a.SearchField.startswith(searchField) – MikeT Jan 28 at 13:09
show 2 more comments

Use this:

from c in dc.Organization
where SqlMethods.Like(c.Hierarchy, "%/12/%")
select *;
share|improve this answer
5  
this is really helpful if you want to use the more complicated pattern matching provided by the like command. For instance, if you wanted to check for any two numbers (instead of 12), you could use this expression: SqlMethods.Like(c.Hierarchy, "%/[0-9][0-9]/%") Also, see this msdn.microsoft.com/en-us/library/aa933232(SQL.80).aspx – viggity Dec 8 '10 at 15:20

I'm assuming you're using Linq-to-SQL* (see note below). If so, use string.Contains, string.StartsWith, and string.EndsWith to generate SQL that use the SQL LIKE operator.

from o in dc.Organization
join oh in dc.OrganizationsHierarchy on o.Id equals oh.OrganizationsId
where oh.Hierarchy.Contains(@"/12/")
select new { o.Id, o.Name }

or

from o in dc.Organization
where o.OrganizationsHierarchy.Hierarchy.Contains(@"/12/")
select new { o.Id, o.Name }

Note: * = if you are using the ADO.Net Entity Framework (EF / L2E) in .net 3.5, be aware that it will not do the same translation as Linq-to-SQL. Although L2S does a proper translation, L2E v1 (3.5) will translate into a t-sql expression that will force a full table scan on the table you're querying unless there is another better discriminator in your where clause or join filters.
Update: This is fixed in EF/L2E v4 (.net 4.0), so it will generate a SQL LIKE just like L2S does.

share|improve this answer
1  
+1 for comment about Entity Framework – surfen Jan 31 '12 at 15:14

If you are using VB.NET, then the answer would be "*". Here is what your where clause would look like...

Where OH.Hierarchy Like '*/12/*'

Note: "*" Matches zero or more characters. Here is the msdn article for the Like operator.

share|improve this answer
Does the VB Like operator translate into L2S calls? (I have no idea.) – andleer May 7 '09 at 18:30
5  
Yes, the VB Like operator gets translated to the SQL version of like when used in a LINQ query expression. Also, the VB Like operator is not restricted to query expressions. – robertz May 7 '09 at 19:06
1  
I saw that it existed outside of LINQ operations. Good stuff. +1 – andleer May 7 '09 at 20:28
Long live VB!!! – Shimmy Feb 15 '11 at 20:08

In case you happened to need it in LINQ to Entities, here is how: http://jendaperl.blogspot.com/2011/02/like-in-linq-to-entities.html

share|improve this answer
This. Is. Awesome. How is this not upvoted more? +1 – Adam Robinson Sep 20 '11 at 15:07

Using predicate builder to make Linq queries is a good practice when building dynamic queries with many such conditions. See this codeproject article also

share|improve this answer

Well indexOf works for me too

var result = from c in SampleList
where c.LongName.IndexOf(SearchQuery) >= 0
select c;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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