vote up 5 vote down star

Hello All,

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?

Much appreciated,

-Matt

flag

3 Answers

vote up 12 vote down check

.Where(oh => oh.Hierarchy.Contains("/12/"))

you can also use .StartsWith() or .EndsWidth()

link|flag
vote up 7 vote down

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 == 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), be aware that it will not do the same translation as Linq-to-SQL. Although L2S does a proper translation, L2E 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.

link|flag
vote up 2 vote down

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|flag
Does the VB Like operator translate into L2S calls? (I have no idea.) – Andrew Robinson May 7 at 18:30
1  
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 at 19:06
I saw that it existed outside of LINQ operations. Good stuff. +1 – Andrew Robinson May 7 at 20:28

Your Answer

Get an OpenID
or

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