I want to search for this:
Post Cereal
and get this:
Post Honey Nut Cereal
where the wild cards would be
I believe you could use SqlFunctions.PatIndex:
dt.Table.Where(p => SqlFunctions.PatIndex(term, p.fieldname) > 0);
SqlFunctions.PatIndex behaves the same as the SQL LIKE operator. It supports all standard wildcard characters including:
SqlFunctions.PatIndex is often available when the SqlMethods.Like is not available (including within MVC controllers)