symfony-playground/src/Repository/MerParaDMRepository.php

66 lines
1.8 KiB
PHP

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