<?php
namespace App\Repository;
use App\Entity\ProductOption;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<ProductOption>
*
* @method ProductOption|null find($id, $lockMode = null, $lockVersion = null)
* @method ProductOption|null findOneBy(array $criteria, array $orderBy = null)
* @method ProductOption[] findAll()
* @method ProductOption[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class ProductOptionRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, ProductOption::class);
}
public function save(ProductOption $entity, bool $flush = false): void
{
$this->getEntityManager()->persist($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function remove(ProductOption $entity, bool $flush = false): void
{
$this->getEntityManager()->remove($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function getMinAndMaxValueByName(): array
{
return $this->createQueryBuilder('o')
->select('o.name, min(cast(o.value as decimal)) as min, max(cast(o.value as decimal)) as max')
->where("o.name in ('NAME_MEASURE_VOLUME', 'NAME_COMPARTMENTS_COUNT', 'NAME_MEASURE_LINEAR_METERS','NAME_INSURABLE_VALUE')")
->groupBy('o.name')
->getQuery()
->getResult();
}
// /**
// * @return ProductOption[] Returns an array of ProductOption objects
// */
// public function findByExampleField($value): array
// {
// return $this->createQueryBuilder('p')
// ->andWhere('p.exampleField = :val')
// ->setParameter('val', $value)
// ->orderBy('p.id', 'ASC')
// ->setMaxResults(10)
// ->getQuery()
// ->getResult()
// ;
// }
// public function findOneBySomeField($value): ?ProductOption
// {
// return $this->createQueryBuilder('p')
// ->andWhere('p.exampleField = :val')
// ->setParameter('val', $value)
// ->getQuery()
// ->getOneOrNullResult()
// ;
// }
}