Tagged Questions
The class-table-inheritance tag has no wiki summary.
15
votes
2answers
894 views
PHP doctrine 1.2 ORM - polymorphic queries with class table inheritance
I'm experimenting with the Doctrine ORM (v1.2) for PHP. I have defined a class "liquor", with two child classes "gin" and "whiskey". I am using concrete inheritance (class table inheritance in most ...
4
votes
4answers
4k views
Class Table Inheritance in Rails 3
I'm currently working on a Rails 3 application that looks like it might need to use Class Table Inheritance for a couple of models.
A simplified example of what's going on is this.
I have a class ...
3
votes
1answer
34 views
Pros and cons of Single Table Inheritance for Assets in Rails
I'm looking at file upload gems and there seems to be a tendency to put all assets in single "Assets" table and using STI to subclass them. Like ImageAsset, VideoAsset, AudioAsset, etc.
I'm new to ...
2
votes
1answer
147 views
How to specify foreign key column for Class Table Inheritance in Doctrine2?
How can I specify the columns that are used for the foreign key relation with Class Table Inheritance in Doctrine 2? For example, take the following two classes:
/**
* @Entity
* ...
2
votes
1answer
484 views
Zend Framework 1.11 + Doctrine 2 + Class Inheritance mapping (YAML) problems with generate entities
I get number of problems trying to implement CTI
First of all I use a custom loader for my entity classes
class My_AutoLoader implements Zend_Loader_Autoloader_Interface
{
public function ...
2
votes
0answers
334 views
Use both Class Table and Single Table inheritance in Castle Activerecord?
In Castle Activerecord (on top of NHibernate), is it possible to use class table inheritance globally, and single table inheritance on part of the inheritance tree? I would like to do something like
...
2
votes
3answers
168 views
Discovering the subclass of a row in the superclass table
I have a table of electronic devices that serves as a generic superclass and then separate subclass tables for phones, laptops, cameras, etc. that extend the superclass and give specific information ...
1
vote
2answers
125 views
SQL One-to-Many Table vs. multiple one-to-one relationships
I'm working on a project with the following objective: A User can create a Challenge and select an optional Rival to take part of this challenge. The Challenge generates Daily entries and will track ...
1
vote
1answer
90 views
How to convert entity leaving it id
There are some entities (Region, Country, City) wich used STI (or even CTI). How it possible convert Country to City leaving old id?
1
vote
2answers
115 views
How to change and entity type in Doctrine2 CTI Inheritance
How (if possible at all) do you change the entity type with Doctrine2, using it's Class Table Inheritance?
Let's say I have a Person parent class type and two inherited types Employe and Client. My ...
1
vote
2answers
789 views
How to use “class table inheritance” in Doctrine 2 with XML mapping
I'm trying to use the "class table inheritance feature" of Doctrine 2 with XML Mapping (Symfony 2 PR 7).
XML definition of the XML superclass CatalogProduct:
<?xml version="1.0" ...
1
vote
3answers
397 views
Rails class-table inheritance gem, faux-inheritance, and missing methods
I'm working on modifying part of an existing Rails app to use the Class-Table-Inheritance gem (https://github.com/brunofrank/class-table-inheritance). All's well, except that I have defined some ...
0
votes
1answer
48 views
Handling forms with class table inheritance models
I would like to use form_for except I have class table inheritance models using the citier gem. They are defined as such:
class Fruit < ActiveRecord::Base
# calories:integer
# color:string
...
0
votes
1answer
62 views
Inheritance & Database Design
When you model inheritance through class table inheritance relationships in a database model, do you...
1) Include an attribute (boolean for two subtipes, string for more subtipes) which identifies ...
0
votes
1answer
108 views
CakePHP alternative to Class Table Inheritance?
I want to create a Class Table Inheritance model in CakePHP.
I would like to have a Model called something like ProductBase with the table product_bases to hold all the base information every product ...
0
votes
0answers
48 views
Why Does My Class Table Inheritance Model Only Return Results From The Parent Class
I've been spending the morning trying to implement the Class Table Inheritance method set forth in this article: Class Table Inheritance With Eager Loading
If you are looking for an alternative to ...