当前位置: 首页>>代码示例>>PHP>>正文


PHP EntityManager::create方法代码示例

本文整理汇总了PHP中EntityManager::create方法的典型用法代码示例。如果您正苦于以下问题:PHP EntityManager::create方法的具体用法?PHP EntityManager::create怎么用?PHP EntityManager::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在EntityManager的用法示例。


在下文中一共展示了EntityManager::create方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * @param \Saigon\Conpago\IDbConfig $dbConfig
  * @param \Saigon\Conpago\IDoctrineConfig $doctrineConfig
  */
 public function __construct(IDBConfig $dbConfig, IDoctrineConfig $doctrineConfig)
 {
     $this->dbConfig = $dbConfig;
     $this->doctrineConfig = $doctrineConfig;
     $paths = array($this->doctrineConfig->getModelPath());
     $this->setDbParams();
     $config = Setup::createAnnotationMetadataConfiguration($paths, $this->doctrineConfig->getDevMode());
     $this->entityManager = EntityManager::create($this->dbParams, $config);
 }
开发者ID:bartoszgolek,项目名称:PHPers,代码行数:13,代码来源:adaptacja-.php

示例2: Application

    HttpFragmentServiceProvider,
    UrlGeneratorServiceProvider,
    DoctrineServiceProvider,
    SessionServiceProvider,
    ValidatorServiceProvider
};
use Doctrine\ORM\{
    Tools\Setup,
    EntityManager
};

$app = new Application();
$app->register(new ServiceControllerServiceProvider());
$app->register(new TwigServiceProvider());
$app->register(new HttpFragmentServiceProvider());
$app->register(new UrlGeneratorServiceProvider());
$app->register(new DoctrineServiceProvider(), array(
    "db.options" => $dbConnection
));
$app->register(new SessionServiceProvider());
$app->register(new ValidatorServiceProvider());

$paths = array(__DIR__."/../src/App/Model");
$isDevMode = false;
$config = Setup::createYAMLMetadataConfiguration($paths, $isDevMode, __DIR__.'/cache/');
$config->setAutoGenerateProxyClasses(true);

$app['em'] = EntityManager::create($dbConnection, $config);

return $app;
开发者ID:bithu30,项目名称:myRepo,代码行数:30,代码来源:app.php

示例3: create

 /**
  * @return mixed
  */
 public function create()
 {
     $pk = $this->entityManager->create($this->tableName, $this->object);
     $this->setPrimaryKey($pk);
     return $pk;
 }
开发者ID:abelduarte,项目名称:PHP-EntityManager,代码行数:9,代码来源:Entity.class.php

示例4: array

<?php

use Doctrine\ORM\Tools\Setup;
$models = [__DIR__ . "/../src/Models"];
$config = Setup::createAnnotationMetadataConfiguration($models, true);
$conn = array('driver' => 'pdo_mysql', 'host' => 'localhost', 'dbname' => 'test1', 'user' => 'root', 'password' => '');
$app->em = EntityManager::create($conn, $config);
$helperSet = new \Symfony\Component\Console\Helper\HelperSet(array('db' => new \Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper($app->em->getConnection()), 'em' => new \Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper($app->em)));
return $helperSet;
开发者ID:GadzhievMagomed,项目名称:test2,代码行数:9,代码来源:cli-config.php

示例5: array

<?php

$lib = 'path/to/doctrine2/';
require $lib . 'lib/Doctrine/ORM/Tools/Setup.php';
Setup::registerAutoloadGit($lib);
$cache = new \Doctrine\Common\Cache\ArrayCache();
$config = Setup::createAnnotationMetadataConfiguration(array(), true);
$config->setSQLLogger(new Doctrine\DBAL\Logging\EchoSQLLogger());
$connectionOptions = array('driver' => 'pdo_sqlite', 'memory' => true);
$evm = new \Doctrine\Common\EventManager();
$evm->addEventListener(array('postLoad'), new ActiveEntityListener());
$em = EntityManager::create($connectionOptions, $config, $evm);
ActiveEntityRegistry::setDefaultManager($em);
$schemaTool = new \Doctrine\ORM\Tools\SchemaTool($em);
$schemaTool->createSchema(array($em->getClassMetadata("Article")));
$article = new Article();
$article->setHeadline("foo");
$article->setBody("barz!");
$other = Article::create(array('headline' => 'foo', 'body' => 'omg!?'));
$article->persist();
$other->persist();
$em->flush();
$em->clear();
$article = Article::find(1);
$article->remove();
$em->flush();
$articles = Article::findBy(array('headline' => 'foo'));
echo count($articles) . " articles\n";
$articles = Article::createQueryBuilder('r')->where(Article::expr()->like("r.body", '%omg%'));
echo count($articles) . " articles\n";
开发者ID:sbaldani,项目名称:serializable-entity-doctrine,代码行数:30,代码来源:sample.php


注:本文中的EntityManager::create方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。