up vote 58 down vote favorite
14
share [g+] share [fb]

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?

link|improve this question

feedback

7 Answers

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

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

link|improve this answer
feedback

Use this

from c in dc.Organization where SqlMethods.Like(c.Hierarchy, "%/12/%") select *;

link|improve this answer
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
feedback

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.

link|improve this answer
Does the VB Like operator translate into L2S calls? (I have no idea.) – andleer May 7 '09 at 18:30
3  
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
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
feedback

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.

link|improve this answer
feedback

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

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

Well indexOf works for me too

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

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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