dongzhoutuo0883 2014-10-24 13:37
浏览 42
已采纳

如何按Doctrine 2中没有@Column注释的实体属性进行搜索?

 /**
* @ORM\Entity
*/
class Order extends BaseEntity
{
// this is trait for @Id
use Identifier;

/**
* @ORM\Column(type="integer")
*/
protected $costPerUnit;

/**
* @ORM\Column(type="integer")
*/
protected $numberOfUnits;

// i want to search by this property
protected $totalCost;

public function getTotalCost()
{
 return $this->numberOfUnits * $this->costPerUnit;
}

}

I have an entity like this and I'd like to be able to do for example

$orderRepository->findOneByTotalCost('999')
$orderRepository->findBy(['totalCost' => '400']);

Is this possible in Doctrine2? Or would I go about it differently?

  • 写回答

2条回答 默认 最新

  • dousi8559 2014-10-24 13:56
    关注

    You should write a method findOneByTotalCost on your entity repository, something like:

    public function findOneByTotalCost ($queryParams){
    
        $query = 'select o
                    from <yourEntity> o
                   where o.numberOfUnits * o.costPerUnit = :myParam';
    
    
        $dql = $this->getEntityManager()->createQuery($query);
        $dql->setParameter('myParam', $queryParams);       
    
        return $dql ->execute();
    
    
    }
    

    Them, $orderRepository->findOneByTotalCost('999') should work.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 正弦信号发生器串并联电路电阻无法保持同步怎么办
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 个人网站被恶意大量访问,怎么办
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)