I would like to know if it is possible to do a wildcard search using LINQ.
I see LINQ has Contains, StartsWith, EndsWith, etc.
What if I want something like %Test if%it work%, how do I do it?
Regards
|
|
|
I would use Regular Expressions, since you might not always be using Linq to SQL. Like this example of Linq to Objects
|
|||||||||||||||
|
|
You can use SqlMethods.Like(). An example of the usage:
|
|||||||||||||
|
|
add System.Data.Linq.SqlClient to your using or imports list then try:
|
|||
|
|
Will work for both Linq to SQL and Linq in memory. |
|||
|
|
|
|||
|
|
|
Are you talking LINQ to objects or LINQ to SQL? For LINQ to objects you'll have to resort to regular expressions me thinks. |
|||
|
|
|
not sure if you talk LinqToSql or just linq... but you could regular expressions like this:
|
|||
|
|
|
In .Net code including LINQ to Objects, I am using implementation of IsSqlLikeMatch function from thread Using Regex to create a SQL's "like" like function.. Example of use
More details in my post SQL's "like" patterns to compare in .Net |
|||
|
|