I have a expression which is returning me Ids:
var UserNotificationIds = _notificationBidderRepos.All(u => u.BidderId == BidderId).Select(n =>n.BidderId);
Another structure has Notifications and requirement is to filter notifications for which Id is provided in UserNotificationIds
var AllNotifications = _notificationRepos.All(n => n.ExpiresAt > DateTime.UtcNow).ToList();
I m trying the following code to query all Notifications but not getting how to impement "where in" in my expression.
Please help