I'm querying from the db below but I only need to return a record that doesn't have the age in the Agelist. But I'm stuck on how to go about and try match the age from table and age in list. Any help will be much appreciated. Thanks
List<int> AgeList = new List<int> { 61, 42, 23, 25 };
var query = Context.Table.FirstorDefault(t => t.Name == name && and t.Country ==country && t.Age != AgeList.Contains()) // I'm stuck here!!