I want to get the data from the DB (my sql) which are all posted for current week. I am using Doctrine ORM, my sql. I think i need to use createQueryBuilder for this but i dont know exactly how to use that for my situation. I tried with the below statement, but didnt worked.
......->createQueryBuilder('t')
->where('WEEK(t.dateCreated) = WEEK(CURDATE())')
->getQuery()
->getResult();
Please help me on this.