I am looking for the equivalent of this feature of T-SQL:
SELECT *
FROM dbo.users
WHERE CONTAINS (name, 'Jack')
in Entity Framework.
Thanks.
P.S. "contains" in linq is equivalent of LIKE in TSQL (eg., '%jack%'). I'm not looking for this because this kind of search, especially on large databases may affect the performance.