c# new selectlist other attributes code example
Example 1: c# new list object
var intList = new List<int>();
Example 2: c# linq get list of objects based on another list
var filtered = listOfAllVenuses
.Where(x=>!listOfBlockedVenues.Any(y=>y.VenueId == x.Id));