Given I have an instance of Event ($event) that has many AttendancePerson, I need to get all of the AttendancePerson objects belonging to $event where the AttendancePerson.person attended more than one event that has a calendar_id matching $event->calendar_id and where the AttendancePerson.event.dateTo ends in the previous year.
The schema minus irrelevant column names:
event_attendance_person
- id
- event_id
- person_id
event
- id
- calendar_id
- dateTo
person
- id
event_calendar
- id
The purpose is to find old members of any given event. Any event attendance person who attended an event sharing the same calendar more than once in the previous year is an "old member" of the event.
I read through many relevant questions. None of them helped. Thank you to anyone who can help on this.
Assuming that
(person_id,event_id)
is unique inevent_attendance_person
.In SQL (updated column names to match example data)
Using QueryBuilder
For your specific requirement of having persons from
event_attendance_person
who have attended more than 1 event in past year of same calendar to the calendar of provided event so in plain Mysql query you can join your tables get the count of distinct events per person id i.eCOUNT(DISTINCT e.id)
and a conditional count for the provided event id lets say i want to get the persons who have attended event with id2228
so for this suing case in count you can do soCOUNT(CASE WHEN e.id = 2228 THEN 1 END)
this will give you the count 1 for the person who attended this event and 0 for persons who misses that event, reason for this conditional count is because i am not using where filter for event id i have overcome this one by using having clause and for the past year a simple where clause isWHERE e.dateTo < DATE_FORMAT(NOW() ,'%Y-01-01 00:00:00')
You can test this query on your Mysql server
Now here comes the doctrine part you can replicate above query in DQL as
For above DQL i assume you have already mapped your relations among your entities like for above query below are the mandatory relations which must exist in your entities
JOIN p.events e Now p is alias for entity
NamespaceYourBundle:EventAttendencePerson
,EventAttendencePerson
entity must point to yourEvent
entity so that the onON(p.eventId = e.id )
part can be achievedJOIN e.calandar c Now
Event
entity must point to yourCalendar
entity in order to achieveON(e.calendar =c.id)
And then you can run your DQL as below by using doctrine's paginator class
Why does event_attendance_person need to be it's own object? Wouldn't a many to many relationship with a join table like event_person suffice?
Anycase assuming you have your doctrine entities set up correctly, you'd probably want to split this up into two separate DQL queries, the first query is where you get the list of people who attended the event and then you pass the id list of those people into your second query which does a where person_id IN (person_ids) and WHERE event_id != event.id AND calendar.id = event.calendar.id AND event.dateTo > calculated_date
the DQL for those two separate queries should be easy enough to write.