Wpis z mikrobloga

@endomorficzny: Czy zapytanie na pewno jest poprawne? Popraw mnie jak się mylę, ale tabela Occurences nie jest nigdzie joinowana (może chodzi o Visits.RestaurantId)? Może poniższe da rade (nie testowane)?

restaurants
.Where(x => !visits.Exists(y => y.PersonId == 12 && y.RestaurantId == x.Id))
.Select(x => x.RestaurantId)
.ToList();