I\'m looking at some code that takes an IEnumerable and converts it to a List so it can use List.Find(predicate):
var myEnumerable = .
Or you can do the following way:
var match = myEnumerable.Where(value => value.Aaa == aaa && value.Bbb == bbb) .FirstOrDefault();