Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: ORM
-
Security Level: All
-
Labels:None
Description
The following code works:
$repository->findBy(array('date' => new \DateTime()))
but the following code fails as it does not apply the conversion of the date type for each element:
$repository->findBy(array('date' => array(new \DateTime(), new \DateTime('tomorrow')))
This is actually very hard to implement, the problem is that we only have ARRAY constants for PDO::PARAM_INT and PDO::PARAM_STR - all the other types would require special handling.