- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我使用 symfony 3 和 doctrine,这是我的问题:
我想制作由不同数量的配料组成的菜肴。
数据库看起来像这样:
[ Dish ] <===> [ IngredientDish ] <===> [ Ingredient ]
[------] [----------------] [------------]
[- name] [- Dish ] [-name ]
[ ] [- Ingredient ] [ ]
[ ] [- quantity ] [ ]
[------] [----------------] [------------]
这是我的代码:
Dish.php
/**
* @ORM\Table(name="dish")
* @ORM\Entity(repositoryClass="AppBundle\Repository\DishRepository")
*/
class Dish
{
/**
* @ORM\OneToMany(targetEntity="AppBundle\Entity\IngredientDish",
* mappedBy="dish")
*/
private $ingredientsDish;
[...]
public function addIngredientDish(IngredientDish $ingredient)
{
$this->ingredientsDish[] = $ingredient;
return $this;
}
public function getIngredientsDish()
{
return $this->ingredientsDish;
}
}
成分.php
/**
* @ORM\Table(name="ingredient")
* @ORM\Entity(repositoryClass="AppBundle\Repository\IngredientRepository")
*/
class Ingredient
{
/**
* @ORM\OneToMany(targetEntity="AppBundle\Entity\IngredientDish",
* mappedBy="ingredient")
* @Assert\Type(type="AppBundle\Entity\IngredientDish")
*/
private $ingredientsDish;
[...]
public function addIngredientDish(IngredientDish $ingredientDish)
{
$this->ingredientDish[] = $ingredientDish;
return $this;
}
public function getingredientsDish()
{
return $this->ingredients;
}
}
IngredientDish.php
/**
* @ORM\Table(name="ingredient_dish")
* @ORM\Entity(repositoryClass="AppBundle\Repository\IngredientDishRepository")
*/
class IngredientDish
{
/**
* @ORM\Column(name="quantity", type="smallint")
* @Assert\NotBlank()
* @Assert\Length(min=1)
*/
private $quantity = 1;
/**
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\Ingredient",
* inversedBy="ingredientsDish")
* @Assert\Type(type="AppBundle\Entity\Ingredient")
*/
private $ingredient;
/**
* @ORM\ManyToOne(targetEntity="AppBundle\Entity\Dish",
* inversedBy="ingredientsDish")
* @ORM\JoinColumn()
* @Assert\Type(type="AppBundle\Entity\Dish")
*/
private $dish;
public function __construct(Ingredient $ingredient, Dish $dish, $quantity = 1)
{
$this->setIngredient($ingredient);
$this->setDish($dish);
$this->setQuantity($quantity);
}
public function setQuantity($quantity)
{
$this->quantity = $quantity;
return $this;
}
public function getQuantity()
{
return $this->quantity;
}
public function setIngredient(Ingredient $ingredient)
{
$this->ingredient = $ingredient;
return $this;
}
public function getIngredient()
{
return $this->ingredient;
}
public function setDish(Dish $dish)
{
$this->dish = $dish;
return $this;
}
public function getDish()
{
return $this->dish;
}
}
我的测试代码
$em = $this->getDoctrine()->getManager();
//Get an apple pie
$dish = $em->getRepository('AppBundle:Dish')->find(6);
//Get an apple
$ingredient = $em->getRepository('AppBundle:Ingredient')->find(11);
$quantityApple = 5;
$ingredientDish = new IngredientDish($ingredient, $dish, $quantityApple);
$ingredient->addIngredientDish($ingredientDish);
$dish->addIngredientDish($ingredientDish);
$em->persist($ingredientDish);
$em->persist($dish);
$em->flush();
执行后,我有一个有趣的条目:
mysql> select * from ingredient_dish;
+----+---------------+----------+---------+
| id | ingredient_id | quantity | dish_id |
+----+---------------+----------+---------+
| 1 | 11 | 5 | 6 |
+----+---------------+----------+---------+
但是之后,如果我尝试拿到我的菜:
$dish = $em->getRepository('AppBundle:Dish')->find(6);
dump($dish->getIngredientsDish());
它没有成分:
PersistentCollection {#1180 ▼
-snapshot: []
-owner: Dish {#1146 ▶}
-association: array:15 [ …15]
-em: EntityManager {#1075 …11}
-backRefFieldName: "dish"
-typeClass: ClassMetadata {#1157 …}
-isDirty: false
#collection: ArrayCollection {#1181 ▼
-elements: [] <<<<<<<<<<<<<<<<<<<<< EMPTY
}
#initialized: false
}
我的测试代码执行后数据库不为空,所以我认为是getter出错了。你能帮我吗,你看到什么东西是假的吗?
感谢您的帮助! :)
最佳答案
我认为一切都很好,但你被延迟加载误导了,这显然比你想象的要聪明。 ;-)
当你这样做的时候
$dish->getIngredientsDish();
您收到 PersistentCollection
,它扩展了 AbstractLazyCollection
。
但该集合仍未从 DB(!) 中提取
仔细查看您的 var_dump
结果
PersistentCollection {#1180 ▼
-snapshot: []
-owner: Dish {#1146 ▶}
-association: array:15 [ …15]
-em: EntityManager {#1075 …11}
-backRefFieldName: "dish"
-typeClass: ClassMetadata {#1157 …}
-isDirty: false
#collection: ArrayCollection {#1181 ▼
-elements: [] <<<<<<<<<<<<<<<<<<<<< EMPTY //<= yeah empty, but...
}
#initialized: false // <= it's still not initialized!
}
如您所见,initialized
属性表示集合仍未初始化(未从 DB 获取)。
只是尝试使用它。它将在第一次使用时获取集合。
关于database - 创建一个双向的多对多关联,带有额外的学说字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39379829/
我配置了我的RouteInitializer如下: class AppRouteInitializer implements RouteInitializer { init(Router rout
我正在尝试从 Android 应用程序发送短信。我正在使用 PendingIntent 以便我可以使用 Broadcast Receiver 检查它是否发送正常。由于 sendTextMessage
目录 简介 1 "额外"字段是什么 1.1 "额外"是指与业务无关 1.2 产生
应用程序读取 JSON 数据。然后它会将其放入 ListView (正确),但在按下某个项目后,我总是会得到显示的相同值。下面的代码我认为是问题所在,但我找不到。 try{ JSONArray
我正在使用以下代码 (Kotlin) 创建通知 val builder = NotificationCompat.Builder(ctx) ........ .set
我有一个问题。现在我正在使用 3 个面板,mainPanel 和其他 2 个面板(btnPanel 和 iconPanel)。所以问题是当我按下“重置”按钮时,我删除了 iconPanel 并再次添加
这是我的 html: Settings Export Import 和CSS: span.button { float:right; margin-righ
我正在尝试将一个结构编码为 JSON,然后将其插入我的 Mongo 数据库,但不断出现此错误:%!(EXTRA main.Test={575590180 Me})。我究竟做错了什么?我完全从我从事的另
嘿,我遇到了这些 latex 格式问题,有人可以提供一些帮助吗? .tex 文件: \begin{table}{} \renewcommand{\arraystretch}{1.1} \c
我在 FragmentPagerAdapter 中使用了 Fragment 的 ArrayList。 我想在 saveState() 中保存此 ArrayList 的状态,并在 restoreStat
我做了this MapKit-教程 一切正常,但如何为我的 pin 添加额外的属性? 这是我的课车: import Foundation import MapKit class Car: NSObje
关于 Android intent 将提供的附加功能有哪些文档? 更新: 我做了一些进一步的调查。我知道我们可以假设每个 Intent 都不会解析任何数据或额外内容,除非有明确记录。此外,一些(但不是
我在 python3.4.3 上使用 SqlAlchemy 来管理 MySQL 数据库。我正在创建一个表: from datetime import datetime from sqlalchemy
我正在使用 bootstrap 创建网页。我在两个 block (内容和标题)上派生了正文。在内容 block 中,我有 div 类 .container .sameTable 在里面我有 div 类
我在Windows 7上的MinGW和MSYS下使用gfortran构建了一些fortran程序。但是当我在未安装MinGW和MSYS的其他计算机上运行它们时,系统总是要求一些dll,例如libgfo
第一个元素的右侧似乎有额外的间距,我不知道它是从哪里来的。有人可以帮助我吗? 这是我使用的代码: http://jsfiddle.net/srabeat/tenx4y1c/1/ for (i = 0;
我使用 fs-extra 收到以下错误: ERROR { [Error: EPERM: operation not permitted, unlink 'C:\Projects\xxx\branche
我正在尝试在 CBC 模式下使用 AES-128 加密 320 字节的二进制数据,并将密码存储到一个文件中。输出文件应该是 320 字节,但我得到了 336 字节。这是我的代码: #include
我有一个特定的要求,我必须从我的 Activity 中触发浏览器上的 url。我可以使用以下代码执行此操作: Intent browserIntent = new Intent( Intent.A
我正在使用 JMS DI 注入(inject)带有注解的服务: use JMS\DiExtraBundle\Annotation as DI; /** * @DI\Service("foo.bar.
我是一名优秀的程序员,十分优秀!