Doctrine2 Integration - linusnorton/xFrame GitHub Wiki

Note: Doctrine2 must be installed.

Application Access

The Doctrine2 Entity Manager is provided through the dependency injection container:

/**
 * @Request("index")
 */
public function run() {
    $query = $this->dic->em->createQuery("SELECT * FROM xframe\demo\model\User");
}

It is not loaded until first use and it uses the database settings in the configuration file.

CLI Access

If you cd to the root directory of your project the doctrine cli program will detect the cli-config.php bootstrap and use the xFrame Entity Manager instance.

$ cd /var/www/example.org
$ doctrine orm:schema-tool:create

More on Doctrine2

Doctrine2 Documentation