how to use like keyword in linq query
query = query.Where
(s => s.tbl.Contains(tbl));
Contains() is translated LIKE '%term%' StartsWith() = LIKE 'term%' EndsWith() = LIKE '%term'
Thank You
Bolg : http://aspnettutorialscode.blogspot.in/