I’ve got a list of objects of type A. Each object has a Name property. I have an object of type B that also has a Name property where I wanted to use this B.Name to match the objects in List<A> that have the same name.
Is this possible using List.Where with a custom predicate?
Yes, unless I’m missing a subtle point of your request: