linq search if an id is in a list of objects code example
Example: linq object list contains
using System.Linq;
bool exists = list.Any(x => x.surname == "Smith");
using System.Linq;
bool exists = list.Any(x => x.surname == "Smith");