Symfony2联合查询实现方法

前端之家收集整理的这篇文章主要介绍了Symfony2联合查询实现方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了Symfony2联合查询实现方法分享给大家供大家参考,具体如下:

1.yml文件

PHP;"> Acme\MspadminBundle\Entity\MspArticle: type: entity table: msp_article manyToOne: Channel: targetEntity: MspChannel inversedBy: Articles joinColumn: name: channel_id referencedColumnName: channel_id User: targetEntity: MspUser inversedBy: Userone joinColumn: name: user_id referencedColumnName: user_id
PHP;"> Acme\MspadminBundle\Entity\MspChannel: type: entity table: msp_channel oneToMany: Articles: targetEntity: MspArticle mappedBy: Channel
PHP;"> Acme\MspadminBundle\Entity\MspUser: type: entity table: msp_user oneToMany: Userone: targetEntity: MspArticle mappedBy: User

2.查询代码

createQuery($sql." Where a.checkStatus = 0 "); $mspArtile = $query->getResult();

希望本文所述对大家基于Symfony框架的PHP程序设计有所帮助。

原文链接:https://www.f2er.com/php/20173.html

猜你在找的PHP相关文章