Skip to content

Instantly share code, notes, and snippets.

@daum
Last active December 14, 2015 12:59
Show Gist options
  • Save daum/5090098 to your computer and use it in GitHub Desktop.
Save daum/5090098 to your computer and use it in GitHub Desktop.
<?php
//MyBundle/Entity/Post.php
...
class Post
{
...
/**
* @ORM\OneToMany(targetEntity=PostAttachment",mappedBy="post")
* @ORM\OrderBy({"name"="ASC"})
*/
private $post_attachments;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment