Link to home
Start Free TrialLog in
Avatar of JRockFL
JRockFLFlag for United States of America

asked on

How can I add this to a list with LINQ

product.MediaSet is a List How can I add job.Result to p.MediaSet?

                    (from job in jobs
                 join product in products on job.Result?.Name equals product?.Scene7ImageSet
                 select product.MediaSet = job.Result).ToList();

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of louisfr
louisfr

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of louisfr
louisfr

No reply for a month. The only solution proposed can work depending on what the context of the question is.