在symfony中有没有办法让一个实体没有数据库?

时间:2017-06-22 23:24:45

标签: php api symfony

在symfony 2.8中有一种方法可以在API应用程序实体中使用而无需存储在数据库中以使用表单和验证来验证发布数据,而无需在控制器中进行所有验证(非空白,数字数据,长度x .. 。)? 也许通过使用抽象实体?

1 个答案:

答案 0 :(得分:0)

只是不要将注释(是否使用注释)告诉将数据存储在数据库中,例如:

通常你有:

@misc{cso17,
   author = {{Czech Statistical Office}}, 
   title = {Life Tables - Methodology}, 
   Howpublished = {\url{http://www.czso.cz/csu/czso/life-tables-methodology}},
  year = {2008},
  urldate = {2017-23-06}
}

简单地写出来:

/**
 * @var int
 * @ORM\Column(type="integer")
 */
protected $userId;