어떤 이유로 MySql + doctrine에서 대소 문자를 구분해야합니까? 2. 가능합니까?Doctrine2 대소 문자 구별
도
$em->find('UserEn', 'Bob')
도
$q = $this->em->createQuery('select u from UserEn u where u.name = :name');
$q->setParameter('name', 'Bob');
$result = $q->getResult();
노력하고 있습니다. 어떤 생각?
우수 답변에 대한 Symfony Doctrine Configuration Documentation를 참조하십시오 : –