Doctrine 2 - 使用数据库中的视图生成实体

时间:2013-10-21 15:52:36

标签: database view doctrine-orm

是否可以使用Doctrine 2从数据库生成视图?

我解释说:

我的数据库包含一些我想要使用的视图,但我不知道如何生成这些视图。

在我的情况下,我有两个表和一个视图,视图在每个表中选择几列,我只想在项目的“实体”文件夹中查看该视图。

2 个答案:

答案 0 :(得分:8)

Doctrine 2支持数据库视图 当前,但它可能执行得非常糟糕。自己尝试将视图映射为实体,并将其标记为@readOnly实体。

答案 1 :(得分:1)

对于对答案感兴趣的人:

我的答案基于此: How to set up entity (doctrine) for database view in Symfony 2

例如,如果您有一个带有“Id”和“Name”列的视图“A”:

在src / Name / YourBundle / Resources / config / doctrine中,使用attributs创建“A.orm.yml”:

Name\YourBundle\Entity\A:
type: entity
table: A
fields:
    id:
        id: true
        type: integer
        unsigned: false
        nullable: false
        column: id
        generator:
            strategy: IDENTITY
    name:
        type: string
        length: 35
        fixed: false
        nullable: true
        column: name

之后,在Name / YourBundle / Entity / A:

中创建A.php
namespace Name\YourBundle\Entity;
use Doctrine\ORM\Mapping as ORM;

/**
 * @ORM\Entity
 * @ORM\Table(name="A")
 */
class A {

    /**
    * @Id @Column(type="integer")
    */
    private $id;
    private $name;

    public function getId() {
        return $this->id;
    }

    public function getName() {
        return $this->name;
    }

}

并且......你可以用控制器调用你的视图。