学说中的关系

问题描述 投票:-1回答:1

我有2个实体:类别和产品。我如何在这些实体之间建立关系?类别实体:

    class Category
    {
        private $id;
        private $name;
        private $parent;
        public function getChildren()
        {
            return $this->children;
        }
    //setters and getters
    }

项目实体:

 class Items
    {

        private $id;
        private $name;
        private $price;
        private $color;
        private $size;
        private $weight;
    //getters and setters
    }

阳明海运类:

AppBundle\Entity\Category:
  type: entity
  oneToMany:
        children:
            targetEntity: AppBundle\Entity\Category
            mappedBy: parent
            orderBy:
                name: ASC
  manyToOne:
        parent:
            targetEntity: AppBundle\Entity\Category
            inversedBy: children
            joinColumn:
                name: parentId
                referencedColumn: id
  table: category
  repositoryClass: AppBundle\Repository\CategoryRepository
  id:
      id:
          column: id
          type: integer
          id: true
          generator:
          generator:
              strategy: AUTO
  fields:
      name:
          type: string
          lenght: 255

物品回来:

AppBundle\Entity\Items:
    type: entity
    table: items
    repositoryClass: AppBundle\Repository\ItemsRepository
    id:
        id:
            type: integer
            id: true
            generator:
                strategy: AUTO
    fields:
        name:
            type: string
            length: 255
        price:
            type: integer
        color:
            type: string
            length: 255
            nullable: true
        size:
            type: integer
        weight:
            type: integer

一种产品可以属于几个类别,如何做到这一点?我认为这是ManyToMany关系,但我无法正确建立关系。 .................................................. .................................................. .................................................. ...............

symfony doctrine-orm yaml relationship any
1个回答
1
投票

添加您的类别yml:

oneToMany:
    items:
        targetEntity: Namespace\TO\YOUR\Entity\Item
        mappedBy: category

添加你的项目yml:

   manyToOne:
    catregory:
        targetEntity: Namespace\TO\YOUR\Entity\Category
        inversedBy: items
        joinColumn:
            name: category_id
            referencedColumn: id

添加您的物品实体:

    /**
 * @var Catregory
 */
protected $catregory;


public function setCategory(Catregory $catregory) {
    $this->catregory = $catregory;
}

public function getCatregory() {
    return $this->catregory;
}       

添加您的类别实体:

use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection; 

.................

/**
 * @var Collection of Item
 */
protected $items;

 public function __construct() {
    $this->items = new ArrayCollection();
}   

public function getItems() {
    return $this->items;
}

public function setItems(Collection $items) {
    $this->items = $items;
}

public function addItem(Item $item) {
    if (!$this->Items->contains($item)) {
        $item->setCategory($this);
        $this->items->add($item);
    }
}

public function removeItem(Item $item) {
    if ($this->items->contains($item)) {
        $this->items->remove($item);
    }
}

public function clearItems() {
    $this->items->clear();
}
© www.soinside.com 2019 - 2024. All rights reserved.