我有两个实体:Advert
和Rental
广告
/**
* @ORM\Table(name = "advert")
* @ORM\Entity(repositoryClass = "App\Repository\AdvertRepository")
*/
class Advert
{
/**
* @ORM\OneToMany(targetEntity = "App\Entity\Rental", mappedBy = "advert")
*/
private $rentals;
private $beginDate;
private $endDate;
public function addRental(\App\Entity\Rental $rental)
{
$this->rentals[] = $rental;
$rental->setAdvert($this);
return ($this);
}
public function getRentals()
{
return $this->rentals
}
租赁
/**
* @ORM\Table(name = "rental")
* @ORM\Entity(repositoryClass = "App\Repository\RentalRepository")
*/
class Rental
{
/**
* @ORM\ManyToOne(targetEntity = "App\Entity\Advert", inversedBy = "rentals")
*/
private $advert;
/**
* @var \Datetime
*/
private $beginDate;
/**
* @var \Datetime
*/
private $endDate;
public function setAdvert(\App\Entity\Advert $advert)
{
$this->advert = $advert;
return ($this);
}
public function getAdvert()
{
return $this->advert;
}
}
我正在尝试编写一个存储库方法,在数据库中获取广告,例如提供的广告。现在,我想排除在给定时间段内租用的所有广告。这就是我的尝试:
在广告资源库中
//This method creates the query builder and use other methods to
//improve the query
public function fetchSearchResult(Advert $advertType)
{
$qb = $this->createQueryBuilder('a');
// Other methods, similar to hasValidPeriods, using other attributes.
// Some of them preform JOIN, successfully. One of them compare dates
// (but no JOIN) also successfully.
// [...]
$this->hasValidRentalPeriods($qb, $advertType->getBeginDate(), $advertType->getEndDate());
return ($qb->getQuery()->getResult());
}
public function hasValidRentalPeriods(QueryBuilder $qb, \Datetime $beginDate, \Datetime $endDate)
{
$qb->leftJoin('a.rentals', 'rental', 'WITH NOT',
'(
(rental.beginDate < :beginDate AND :beginDate < rental.endDate)
OR (rental.beginDate < :endDate AND :endDate < rental.endDate)
OR (:beginDate < rental.beginDate AND rental.endDate <:endDate)
)')
->setParameter('beginDate', $beginDate)
->setParameter('endDate', $endDate)
;
}
通过这个左连接我希望得到:
但它没有返回预期的结果。我得到的所有广告都没有按预期出租,但也有广告与碰撞。此外,删除NOT语句不会更改结果。这就是为什么我意识到这里出了问题。
之后我尝试使用更简单的连接:
$qb->leftJoin('a.rentals', 'rental', 'WITH NOT',
'(rental.beginDate < :beginDate AND :beginDate < rental.endDate)'
)
这次我希望得到所有广告,除了那些租金碰撞了beginDate。但我仍然收到所有广告。
我还尝试将日期转换为Datetime::format('Y-m-d H:i:s')
的字符串,如this post中所示,但我仍然有相同的结果。
我很确定我滥用了Datetime对象之间的比较。另一方面,我已经成功地进行了这样的比较。或许,我的JOIN错了?
注意:为广告正确设置租借。
注2:如果需要,您可以在my github上看到完整的代码和测试
答案 0 :(得分:2)
试试这个:
public function hasValidRentalPeriods(QueryBuilder $qb, \DateTime $beginDate, \DateTime $endDate)
{
if (!$beginDate OR !$endDate) {
throw new PreconditionRequiredHttpException('You must provide begin and end dates');
}
if ($endDate <= $beginDate) {
throw new \Exception('wrong dates');
}
$qb
->leftJoin('a.rentals', 'rental')
->where('rental.beginDate > :endDate')
->orWhere('rental.endDate < :beginDate')
->orWhere('rental.beginDate IS NULL')
->orWhere('rental.endDate IS NULL')
->setParameter('beginDate', $beginDate->format('Y-m-d H:i:s'))
->setParameter('endDate', $endDate->format('Y-m-d H:i:s'));
}
这将返回所有在beginDate-endDate期间没有租借的广告