I have a collection of Calendar objects. Calendar has a property Id.
IEnumerable<Calendar> CalendarsToView;
I have another collection of Event Objects. Event objects have a property of CalendarId
IEnumerable<CalendarEvent> Events;
i want to filter the Events collection to only return events where the calendarId is in the CalendarsToView collection.
what is the best way of doing this?