Мы используем LINQ to EF для разработки решения.
В моем запросе LINQ я хотел бы
string toMatch = "Matt Cool";
newString = toMatch.Replace(" ", "% ") + "%";
// So here newString is 'Matt% Cool%'
/*Now in my datasource, there is no 'Matt Cool', there's 'Matthew Coolguy'.
I would like this query to return that result.
I would expect this behavior with the
wildcard. It doesn't work*/
var results = from a in mycontainer.users
where a.fullname.equals(newString)
select a.fullname;
Я пробовал "*" в качестве символа подстановки и регулярных выражений, но безрезультатно - есть ли другие варианты?