How to do SQL Like % in Linq? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T22:06:24Zhttp://stackoverflow.com/feeds/question/835790http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/835790/how-to-do-sql-like-in-linq5How to do SQL Like % in Linq?mattdell2009-05-07T16:43:26Z2009-05-07T17:34:39Z
<p>Hello All,</p>
<p>I have a procedure in SQL that I am trying to turn into Linq:</p>
<pre><code>SELECT O.Id, O.Name as Organization
FROM Organizations O
JOIN OrganizationsHierarchy OH ON O.Id=OH.OrganizationsId
where OH.Hierarchy like '%/12/%'
</code></pre>
<p>The line I am most concerned with is:</p>
<pre><code>where OH.Hierarchy like '%/12/%'
</code></pre>
<p>I have a column that stores the hierarchy like /1/3/12/ for example so I just use %/12/% to search for it.</p>
<p>My question is, what is the Linq or .NET equivalent to using the percent sign?</p>
<h2>Much appreciated,</h2>
<p>-Matt</p>
http://stackoverflow.com/questions/835790/how-to-do-sql-like-in-linq/835807#83580712Answer by Andrew Robinson for How to do SQL Like % in Linq?Andrew Robinson2009-05-07T16:45:50Z2009-05-07T16:45:50Z<p>.Where(oh => oh.Hierarchy.Contains("/12/"))</p>
<p>you can also use .StartsWith() or .EndsWidth()</p>
http://stackoverflow.com/questions/835790/how-to-do-sql-like-in-linq/835809#8358097Answer by KristoferA for How to do SQL Like % in Linq?KristoferA2009-05-07T16:46:19Z2009-05-07T16:52:55Z<p>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.</p>
<pre><code>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 }
</code></pre>
<p>or</p>
<pre><code>from o in dc.Organization
where o.OrganizationsHierarchy.Hierarchy.Contains(@"/12/")
select new { o.Id, o.Name }
</code></pre>
<p><strong>Note:</strong> * = 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.</p>
http://stackoverflow.com/questions/835790/how-to-do-sql-like-in-linq/836023#8360232Answer by robertz for How to do SQL Like % in Linq?robertz2009-05-07T17:34:39Z2009-05-07T17:34:39Z<p>If you are using VB.NET, then the answer would be "*". Here is what your where clause would look like...</p>
<pre><code>Where OH.Hierarchy Like '*/12/*'
</code></pre>
<p>Note: "*" Matches zero or more characters. <a href="http://msdn.microsoft.com/en-us/library/swf8kaxw%28VS.80%29.aspx" rel="nofollow">Here is the msdn article for the Like operator</a>.</p>