我需要在LINQ查询中使用like运算符
为此:
timb = time.Timbratures.Include("Anagrafica_Dipendente")
.Where(p => p.Anagrafica_Dipendente.Cognome + " " + p.Anagrafica_Dipendente.Nome like "%ci%");
我该怎么做?
答案 0 :(得分:2)
timb = time.Timbratures.Include("Anagrafica_Dipendente")
.Where(p => (p.Anagrafica_Dipendente.Cognome + " "
+ p.Anagrafica_Dipendente.Nome).Contains("ci"));
答案 1 :(得分:0)
您可以像这样使用Contains():
var query = (from p in products
where p.Description.Contains("ci")
select p);