这是一个简单的问题,因为我是菜鸟。我正在学习如何在 mvc 设计模式中使用学说,我似乎总是对应该将查询实体的代码放在哪里感到困惑。我有一种查询实体用户的方法,它应该去哪里?它应该放在我的实体、控制器还是存储库中?
我的代码:
实体用户
<?php
namespace Entities;
use Doctrine\Common\Collections\ArrayCollection;
/** @Entity(repositoryClass="Entities\UserRepository")
* @Table(name="users")
*/
class Users {
/** @id @column */
protected $id;
/** @column */
protected $first;
/** @column */
protected $mi;
/** @column */
protected $last;
/** @column */
protected $userName;
/** @column */
protected $avatar;
/** @OneToMany(targetEntity="Blog", mappedBy="user") */
protected $blogs;
// Constructor
public function __construct() {
$this->blogs = new ArrayCollection();
}
public function __get($property) {
return $this->$property;
}
public function __set($property, $value) {
$this->$property = $value;
}
}
获取用户的方法:应该去哪里?
public function getUsers(){
$query = $this->_em->createQuery('SELECT u FROM Entities\Users u');
return $query->getResult(\Doctrine\ORM\Query::HYDRATE_ARRAY);
}