• 原文出处:2a-mapping_orm.md

  • 原文作者:FriendsOfSymfony

  • 授权许可:创作共用协议

  • 翻译人员:FireHare

  • 校对人员:

  • 适用版本:FOSCommentBundle 2.0.5

  • 文章状态:草译阶段

Step 2a: Setup Doctrine ORM mapping

The ORM implementation does not provide a concrete Comment class for your use,you must create one. This can be done by extending the abstract entities provided by the bundle and creating the appropriate mappings.

ORM实现并不提供为您所用的具体评论类,您必须要创建一个。您可以通过功能包提供扩展抽象实体类并创建适当的映射。


For example:

例如:

 
  

还有线索类:

 
  

Configure your application(配置您的应用程序)

# app/config/config.yml
fos_comment:
    db_driver: orm
    class:
        model:
            comment: MyProject\MyBundle\Entity\Comment
            thread: MyProject\MyBundle\Entity\Thread
assetic:
    bundles: [ "FOSCommentBundle" ]

Or if you prefer XML:

或者您喜爱XML:

# app/config/config.xml

    
        
    


    

Back to the main step(返回主步骤)

Step 2: Create your Comment and Thread classes.

第2步:创建您的评论类和线索类。