I want to search for this:

Post Cereal

and get this:

Post Honey Nut Cereal

where the wild cards would be the spaces.

I know I could do a SPLIT and a series of ANDs and Contains() and translation to a Linq Expression for each term as a specification object, but isn't there a way to honor wildcards in the term sent to SQL? I looked at SQL functions where it's in Linq to SQL, but I am not sure what it is in Linq to Entities.

I would like to do something like this:

term = '%' + term.Replace(' ', '%') + '%';
db.table.where( p => System.Data.Objects.SqlClient.SqlFunctions
                     .SqlMethods.Like(p.fieldname, term) );

Any suggestions?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

I believe you could use SqlFunctions.PatIndex:

dt.Table.Where(p => SqlFunctions.PatIndex(term, p.fieldname) > 0);
link|improve this answer
This deserves more up votes. This worked perfectly for me without much complexity. – Dr. Zim Oct 11 '11 at 17:18
feedback

It is probably easier to bypass LINQ and use an Entity SQL filter:

var query - db.table.Where("TRIM(fieldname) LIKE @pattern");
query.Parameters.Add(new ObjectParameter("pattern", term)); // term == "%what%ever%"

and the type of query implements IQueryable<TEntity> so you can apply further LINQ operators.

link|improve this answer
I'm trying this out in LINQPad, but get this exception: EntitySqlException: 'BusinessName' could not be resolved in the current scope or context. Make sure that all referenced variables are in scope, that required schemas are loaded, and that namespaces are referenced correctly. Where "BusinessName" is the column I am trying to filter on. Can't figure out how to get past this. – adrift Oct 7 '11 at 16:39
@adrift You need to set up LINQPad with the context information, I barely use it so can't really help (IIRC I just referenced the assembly with the context and entity types). – Richard Oct 7 '11 at 20:06
Using Entity SQL is acutally the only way to do that - L2E doesn't support this type of wildcard searching. To fix you problem try to use it.BusinessName. Columns in ESQL must be prefixed and it is default prefix - here is full example of the query. – Ladislav Mrnka Oct 8 '11 at 14:10
feedback

Your Answer

 
or
required, but never shown

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