0

我想对关联对象使用 Collection#Matching,但它不起作用。进行一些挖掘,看起来 Doctrine 对这两个值进行了 in_array 调用。针是持久集合(我的关联),干草堆是我要匹配的实体数组。因为 needle 是 Persisted Collection,所以匹配失败。

这可能是一个错误还是不支持关联?如果它们不受支持,是否有解决方法?

例子:

$query = $em->createQuery("SELECT c FROM Entity\BidCategory c WHERE c.code IN(:categories)");
$query->setParameter('categories', array('CATEGORY_1', 'CATEGORY_2'));
$my_categories = $query->getResult();

$criteria = array(
"min_pub_date" => "01-07-2012",
"max_pub_date" => "01-08-2012"
);

$query = $em->createQuery("SELECT b From Entity\Bid b JOIN b.categories c WHERE b.pub_date > :min_pub_date AND b.pub_date < :max_pub_date");
$query->setParameter("min_pub_date", new DateTime($criteria['min_pub_date']));
$query->setParameter("max_pub_date", new DateTime($criteria['max_pub_date']));
$query->setMaxResults(1);
$bids = $query->getResult();

$criteria = Criteria::create()
->where(Criteria::expr()->in("categories", $my_categories));

$collection = new Doctrine\Common\Collections\ArrayCollection();
foreach($bids as $bid)
{
    $collection->add($bid);
}
$matched_bids = $collection->matching($criteria);
4

1 回答 1

0

标准功能不支持关联。该Criteria::expr()->in()方法适用于常规数组。

于 2013-12-24T00:20:39.017 回答