I have a situation where I am trying to do a join on 2 tables.
Table one has the following:
User ID
john 1
mary 3
tim 4
Table 2 has the following: (Note that ID in table 2 is comma delimited. Note that each ID in table 2 is unique. )
company ID
100 '150', '4', '9'
101 '102','2', '10'
as you can see in the first row of table 2 there is a match with user tim as they both have 4 in them so company 100 is associated.
Issue is with LINQ I am not sure how to do the join between these 2 tables.