Tagged Questions

1
vote
0answers
8 views

Table per hierarchy inheritance with POCO entities in Entity Framework 4

Our organization is looking to standardize on Entity Framework once v4 comes out. As a result, I am looking at what it would take to migrate our application that uses NHibernate for persistence to EF4 …
1
vote
3answers
412 views

MySQL / Rails Performance: One table, many rows vs. many tables, less rows?

Hi, In my Rails App I've several models dealing with assets (attachments, pictures, logos etc.). I'm using attachment_fu and so far I have 3 different tables for storing the information in my MySQL …
0
votes
3answers
149 views

Multiple Table Inheritance vs. Single Table Inheritance in Ruby on Rails

I have been struggling for the past few hours thinking about which route I should go. I have a Notification model. Up until now I have used a notification_type column to manage the types but I think …
1
vote
2answers
43 views

Rails: How can I lock data into a record which is sourced from many system tables?

I am currently building a rails application based around insurance. There is an admin section where the staff can control the system tables, mostly what appears in drop down lists, although some are …
0
votes
1answer
53 views

STI and has_many association with “type” column as Key.

I am using Single Table Inheritance for managing different types of projects. I decided to store some information associated with each project type. So i created new table "project_types" with …
1
vote
4answers
556 views

Single Table Inheritance in Django

Is there explicit support for Single Table Inheritance in Django? Last I heard, the feature was still under development and debate. Are there libraries/hacks I can use in the meantime to capture the …
0
votes
2answers
35 views

many_to_many, sti and will paginate

Hi, i have following code class Category < ActiveRecord::Base has_many :categorizations has_many :posts, :through => :categorizations end class Post < ActiveRecord::Base has_many …
0
votes
4answers
113 views

Rails attr_accessible does not work for :type?

Im trying set the single table inheritance model type in a form. So i have a select menu for attribute :type and the values are the names of the STI subclasses. The problem is the error log keeps …
0
votes
1answer
70 views

Creating Single Table Inheritance Records in Rails

I'm using single table inheritance for my application. My polymorphic type is Maintenance with only one subtype, right now, named OilChange. I'm running into problems creating my records in my …
0
votes
1answer
107 views

Rails Single Table Inheritance

For single table inheritance, how do you force Rails to use an integer column for the 'type' column instead of string?
0
votes
2answers
120 views

STI Inheiritance in Rails. Issues with find.

I am having an issue with searching for records in my STI table due to my inheritance structure class User < ActiveRecord::Base class LegacyUser < User class AuthUser < User class …
0
votes
1answer
132 views

Single Table Inheritance (STI) column associations

When using single table inheritance does one have to be careful not to populate the columns which are specific to different models? Is there a way to specify which columns each model uses?
1
vote
2answers
649 views

Ruby on Rails Single Table Inheritance (STI) and unit test problem (with PostgreSQL)

I'm using an STI model with a single "Accounts" table to hold information for Users and Technicians (i.e. User < Account, Technician < Account). Everything works from a functional perspective, …
2
votes
3answers
268 views

has_many and single table inheritance

Hello, I have a has_many relationship between two entities, Feeds and Posts. I also have specific types of posts, Videos and Photos. This is structured in the database using single table inheritance. …
0
votes
4answers
213 views

Using memcached in Rails app with Single Table Inheritance?

I have a Rails app that uses STI to handle different types of Users, such as: class Admin < User ... end I want to use memcached, but I keep getting the dreaded "unknown class/module" error. …

1 2 next
15 30 50 per page