I know that the .Contains() method is similar to LIKE %therm% , the .StartsWith() method is similar to LIKE therm% and the .EndsWith() method is like LIKE %therm , but ...
Is there any way to do as shown below on **Linq to Entities** ?
SELECT * FROM [dbo].[Users] WHERE Name LIKE 'rodrigo%otavio%diniz%waltenberg'
PS: I USE LINQ TO COMPUTERS. NOT LINQ TO SQL
Rodrigo Waltenberg
source share