Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Invalid
-
Affects Version/s: 2.3
-
Fix Version/s: None
-
Component/s: ORM
-
Security Level: All
-
Labels:
-
Environment:HidePHP 5.4.8 (cli) (built: Oct 18 2012 13:02:07)
Copyright (c) 1997-2012 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies
Fedora Linux 17
mysql Ver 14.14 Distrib 5.5.28, for Linux (x86_64) using readline 5.1ShowPHP 5.4.8 (cli) (built: Oct 18 2012 13:02:07) Copyright (c) 1997-2012 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend Technologies Fedora Linux 17 mysql Ver 14.14 Distrib 5.5.28, for Linux (x86_64) using readline 5.1
Description
Bidirectional one-to-many association with Class Table Inheritance does not work. Example.
Entity Box;
Entity Item;
Entity BoxItem extends Item;
BoxItem has ManyToOne to Box;
Box has OneToMany to BoxItems;
Validation Error:
Got an error: Entities\Box: "The association Entities\Box#items refers to the owning side field Entities\BoxItem#box which does not exist.",
Not a blocker