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

I would like to know if it is possible to do a wildcard search using LINQ.

I see LINQ has Contains, StartsWith, EndsWith, etc.

What if I want something like %Test if%it work%, how do I do it?

Regards

share|improve this question

8 Answers

up vote 16 down vote accepted

I would use Regular Expressions, since you might not always be using Linq to SQL.

Like this example of Linq to Objects

List<string> list = new List<string>();
list.Add("This is a sentence.");
list.Add("This is another one.");
list.Add("C# is fun.");
list.Add("Linq is also fun.");

System.Text.RegularExpressions.Regex regEx = new System.Text.RegularExpressions.Regex("This");

var qry = list
    .Where<string>(item => regEx.IsMatch(item))
    .ToList<string>();

// Print results
foreach (var item in qry)
{
    Console.WriteLine(item);
}
share|improve this answer
2  
Bit long winded - he could just use SqlMethods.Like – Chalkey Jun 24 '09 at 19:29
You are always assuming that you are calling a SQL database. What if you are query a list that was created in memory? – David Basarab Jun 24 '09 at 19:33
6  
His question is tagged with SQL – Chalkey Jun 25 '09 at 16:40
6  
Giving a generic solution for a specific problem IS NOT A BAD THING. – Dementic Mar 26 '12 at 12:56

You can use SqlMethods.Like().

An example of the usage:

var results =
        from u in users
        where SqlMethods.Like(u.FirstName, "%John%")
        select u;
share|improve this answer
1  
very cool! didn't know that existed... – bytebender Jun 24 '09 at 19:27
4  
This will only work with LinqToSql queries (as should be apparent by the class used). – Ryan Versaw Jun 24 '09 at 19:29
Very nice, I didn't know that existed either +1 – Doctor Jones Jun 24 '09 at 19:30
Wow, I never knew there was a SqlMethods class. – BFree Jun 24 '09 at 19:40

add System.Data.Linq.SqlClient to your using or imports list then try:

var results= from x in data
             where SqlMethods.Like(x.SearchField, “%something%like%this%”)
             select x;
share|improve this answer
var result = (from x in db.Members
              where x.IDNumber.Contains(idnumber)
              && x.InstitutionIdentifier == institution.Identifier
              select x).ToList();
return result;

Will work for both Linq to SQL and Linq in memory.

share|improve this answer
.Where( column LIKE "Pattern")
share|improve this answer
Fine for VB, but not C#. – Noldorin Jun 24 '09 at 19:28

Are you talking LINQ to objects or LINQ to SQL?

For LINQ to objects you'll have to resort to regular expressions me thinks.

share|improve this answer

not sure if you talk LinqToSql or just linq... but you could regular expressions like this:

.Where(dto => System.Text.RegularExpressions.Regex.IsMatch(dto.CustomerName, @"Ad"));
share|improve this answer

In .Net code including LINQ to Objects, I am using implementation of IsSqlLikeMatch function from thread Using Regex to create a SQL's "like" like function..

Example of use

bool ret = message.IsSqlLikeMatch(pattern);

More details in my post SQL's "like" patterns to compare in .Net

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.