Jointure in linq with a regular expression
- by Graveen
I'm actually using a join in linqtosql (via dblinq).
I'm trying to include a regular expression in the join part of the linq query.
from i in collectiona
join j in collectionb on Regex.IsMatch(i.name, j.jokered_name) equals true
(...)
I agree i can push the RegExp check in the where part of the linq query, but i was wondering if it is possible…