score:0

string[] stringstosearchfor = new string[] { "text1", "text2" };

using (mydbcontext model = new mydbcontext())
{
    var result = model.atable
        .where(r => stringstosearchfor.any(s => r.name.contains(s)))
        .tolist();
}

score:2

.where(x => stringstosearchfor.any(s => dbfunctions.like(x.name, "%" + s + "%")))

Related Query

More Query from same tag