Listts.Where(t => t.content.IndexOf(search) != -1).ToList();
相当于 sql语句:
================
t=> search.Contains(t.content)
这个相当于 sql语句: