symfony-playground/src/Repository/MerParaSubRepository.php

67 lines
1.8 KiB
PHP

<?php
namespace App\Repository;
use App\Entity\MerParaSub;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @extends ServiceEntityRepository<MerParaSub>
*
* @method MerParaSub|null find($id, $lockMode = null, $lockVersion = null)
* @method MerParaSub|null findOneBy(array $criteria, array $orderBy = null)
* @method MerParaSub[] findAll()
* @method MerParaSub[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class MerParaSubRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, MerParaSub::class);
}
public function add(MerParaSub $entity, bool $flush = false): void
{
$this->getEntityManager()->persist($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
public function remove(MerParaSub $entity, bool $flush = false): void
{
$this->getEntityManager()->remove($entity);
if ($flush) {
$this->getEntityManager()->flush();
}
}
// /**
// * @return MerParaSub[] Returns an array of MerParaSub objects
// */
// public function findByExampleField($value): array
// {
// return $this->createQueryBuilder('m')
// ->andWhere('m.exampleField = :val')
// ->setParameter('val', $value)
// ->orderBy('m.id', 'ASC')
// ->setMaxResults(10)
// ->getQuery()
// ->getResult()
// ;
// }
public function findOneById(int $id): ?MerParaSub
{
return $this->createQueryBuilder('m')
->andWhere('m.id = :val')
->setParameter('val', $id)
->getQuery()
->getOneOrNullResult()
;
}
}