我的理论存储库代码不工作,而我是能够访问数据库和读取表数据正常。
我得到这个stacktrace:
EntityManager->getRepository('AppBundle:Person') in src\AppBundle\Controller\PersonViewController.php (line 18)
public function indexAction(Request $request) {
$em = $this->getDoctrine()->getManager();
$repo = $em->getRepository('AppBundle:Person');
$persons = $repo->findAll();
dump($persons);
person实体模型:Person.php
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Class Person
* @Package AppBundle/Entity
*
* @ORM\Entity(repositoryClass="AppBundle\Repository\PersonRepository")
* @ORM\Table(name="[Person]")
*/
class Person {
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
/**
* @ORM\Column(type="string", length=4)
*/
protected $type;
}
如果这也是必要的,repo代码:PersonRepository.php
<?php
namespace AppBundle\Repository;
use /** @noinspection PhpUndefinedClassInspection */
Doctrine\ORM\EntityRepository;
class PersonRepository extends EntityRepository {
public function create() {
$entity = new Person();
$entity->type('WM_B');
$this->_em->persist($entity);
$this->_em->flush();
}
}
2条答案
按热度按时间fhity93d1#
SQL Server配置管理器-> SQL Server网络配置->协议-> TCP/IP ->
我更改了以下内容
收件人:
不确定什么是TCP动态端口以及为什么要配置它们。
s8vozzvw2#
适用于SQL Server 2019 Developer
在默认安装中:
修复
1.要启用TCP/IP:
1.要启用SQL身份验证模式,请执行以下操作:
1.以上更改需要重新启动“MSSQLSERVER”服务。