How do I use a complex criteria inside a doctrine 2 entity's repository?
问题 Lets say I have a table that holds information about festivals. Each festival has a start and end date. I want to select all the festivals that are live (that happen) on a given date. Meaning, I want to select all the festivals that their start date is before or on a given date, and that their end date is after or on a the same given date. So I went on to the repository class of the festival entity, and created a method to do just that. But the criteria argument "findBy" expects is an array,