Simple Question how to have something like this
customers.where(c=>c.Name **like** "john");
i know this isn not possible but i was wondering how can i have something similar.
thanks in advance.
|
|
||||
|
|
If you are targeting LINQ to SQL, use SqlMethods.Like:
Explanation: The compiler will generate an expression tree from the statement above. Since |
|||||||
|
|
The first thought that comes to mind is This would come closest to providing the kind of functionality you get from
And get output like this: Adam Aaron Aidan Going with |
|||||||||||||||
|
|
|
|||
|
|
|
|||
|
|
|
Use
|
|||
|
|