教義からデータを取得する際に 2 つの問題があります。
- 月初から現在の日付までのレコードを選択
- 年初から現在の日付までのレコードを選択
Mysqlで行うのと同じことを行う Doctrine クエリを作成するにはどうすればよいですか?
ここに私のリポジトリからの私の不完全なコードはありますか?
public function findByYearlyAttendanceTillToday($id)
{
$em = $this->getEntityManager();
$query = $em->createQuery("SELECT count(a) FROM CollegeStudentBundle:StudentAttendance a where a.present LIKE 'A' and a.student_id = :id and a.date > :date");
$query->setParameter('id', $id);
$query->setParameter('date', **?????**);
return $query->getResult();
}