Compare Two Lists Via One Property Using LINQ

You can do this

widgets2.Where(y=>widget1.Any(z=>z.TypeID==y.TypeID));

Leave a Comment