c# linq check if list contains value inside an object with property code example
Example: how to check which item is in an object property c#
var matches = myList.Where(p => p.Name == nameToExtract);
var matches = myList.Where(p => p.Name == nameToExtract);