I am using EF with lambda expression to query a table.
var eventToPushCollage = eventsForEvaluation.Where(x => x.DateTimeStart > currentDateTime && currentDateTime >= x.DateTimeStart.AddMinutes(-15));
Table eventsForEvaluation has a property Id.
In my DB I have also another table called PushedEvents with an Id property.
Note: the two tables have no a Foreign Key relationship.
I need to apply another filtering to my query, and fetch all the records that are also NOT present in the second table PushedEvents.
I would like to know if it is possible and a sample code.
Use group join:
UPDATE (method syntax)