The help file that came with Dynamic Linq in the CSharpSamples.zip does not show any examples of using contains or like.
Are there any simple workarounds for doing this? i.e where (col like @col) doesn't work.
|
The help file that came with Dynamic Linq in the CSharpSamples.zip does not show any examples of using contains or like. Are there any simple workarounds for doing this? i.e where (col like @col) doesn't work. |
|||||||
|
|
Here is the answer! The Dynamic Linq does support the . operator, According to the docs:
Thus, it is possible to use this syntax
Thanks for all the suggestions! And thanks to me for finding the solution. |
|||
|
|
|
Try these links: http://www.velocityreviews.com/forums/t589023-dynamic-like-clause-in-linq-how.html
http://www.simonrhart.com/2008/06/using-like-in-linq-to-sql-under-c.html |
|||
|
|
Actually, there is direct support for the like operator in Linq2Sql:
See here: http://msdn.microsoft.com/en-us/library/system.data.linq.sqlclient.sqlmethods_members.aspx ... but I prefer using startsWith, endsWith and contains for most applications. |
|||
|
|
|
Contains is This is from first link in google request "like operator in linq to sql". Please, google first. |
|||
|
|
|
Please note that the solution provided only works for simple cases: if you want to use parameters for the source of the Contains call, and/or if you want to use the current queried collection to be used as parameter for the Contains call, then the solution provided won't work. You can find in the following blog post a solution to properly extend the Dynamic Linq library and add support for Contains extension: |
|||
|
|
|
There is direct support for the like operator using SqlMethods.Like, but that only works on SQL datasources, not local collections. I needed a local solution, so I made a function myself - it can be found in my blog http://blog.alivate.com.au/?p=382 |
||||
|
|