The associations tag has no wiki summary.
43
votes
4answers
13k views
What is causing this ActiveRecord::ReadOnlyRecord error?
This follows this prior question, which was answered. I actually discovered I could remove a join from that query, so now the working query is
start_cards = DeckCard.find :all, :joins => [:card], ...
23
votes
5answers
9k views
How to create has_and_belongs_to_many associations in Factory girl
Given the following
class User < ActiveRecord::Base
has_and_belongs_to_many :companies
end
class Company < ActiveRecord::Base
has_and_belongs_to_many :users
end
how do you define ...
19
votes
2answers
6k views
Rails :dependent => :destroy VS :dependent => :delete_all
In rails guides it's described like this:
Objects will be in addition destroyed if they’re associated with :dependent => :destroy, and deleted if they’re associated with :dependent => ...
17
votes
4answers
9k views
Rails: belongs_to vs has_one
A bit of a newbie question on rails associations.
I have a Bug model, and a Status model. Status is basically just a key/value pair table. Out of the choices available, I would say Bug has_one Status ...
11
votes
2answers
3k views
MongoDB Many-to-Many Association
How would you do a many-to-many association with MongoDB?
For example; let's say you have a Users table and a Roles table. Users have many roles, and roles have many users. In SQL land you would ...
10
votes
2answers
206 views
Implementing ActiveRecord-like associations for an API wrapper
I recently wrote ParseResource, which is a Ruby API wrapper for Parse.com's REST api.
Here's a some basic usage:
class Post < ParseResource
fields :title, :author, :body
end
p = ...
10
votes
3answers
3k views
Build vs new in Rails 3
In the Rails 3 docs, the build method for associations is described as being the same as the new method, but with the automatic assignment of the foreign key. Straight from the docs:
...
10
votes
3answers
5k views
Using build with a has_one association in rails
This is a really noob question but im having trouble finding the answer, is there a way in rails to have 0 or 1 association? For example, I create a user with no objects, than later on create an ...
10
votes
4answers
13k views
Getting fields_for and accepts_nested_attributes_for to work with a belongs_to relationship
I cannot seem to get a nested form to generate in a rails view for a belongs_to relationship using the new accepts_nested_attributes_for facility of Rails 2.3. I did check out many of the resources ...
9
votes
4answers
4k views
Ruby-on-Rails: Multiple has_many :through possible?
Is it possible to have multiple has_many :through relationships that pass through each other in Rails? I received the suggestion to do so as a solution for another question I posted, but have been ...
9
votes
3answers
2k views
Rails has_one vs belongs_to semantics
I have a model representing a Content item that contains some images. The number of images are fixed as these image references are very specific to the content. For example, the Content model refers ...
8
votes
2answers
2k views
Rails association for two foreign keys for the same table in one table
I am new to RoR and still playing with associations. I need to have two references to a particular model in another model. The scaffolded code doesn't work and I get a "uninitialized constant" error.
...
8
votes
7answers
8k views
Linq To SQL Without Explicit Foreign Key Relationships
I am working with a few legacy tables that have relationships, but those relationships haven't been explicitly set as primary/foreign keys. I created a .dbml file using "Linq To Sql Classes" and ...
7
votes
3answers
362 views
Rails 3 complex associations using nested_has_many_through
I have been trying to develop a movie based rails application which has support for multiple regions (Hollywood, Bollywood etc). I call the multiple regions as languages in the application.
Each ...
7
votes
4answers
2k views
Rails idiom to avoid duplicates in has_many :through
I have a standard many-to-many relationship between users and roles in my Rails app:
class User < ActiveRecord::Base
has_many :user_roles
has_many :roles, :through => :user_roles
end
I ...
7
votes
3answers
4k views
LINQ to SQL - Nullable INT in ForeignKey = “Cannot create an association…”
I have a table that has a primary key that's an INT... I have another table, that has a foreignkey relationship to that first table, but it's a NULLABLE INT.
This is perfectly ok, and 100% acceptable ...
6
votes
3answers
172 views
What is the “rails way” to enforce a has_many but has-only-one-current association?
I have a simple rails app with models project and phase. A project has many phases, but only on phase can be active (i.e. "current") at a time. I still want the other phases to be accessible, but the ...
6
votes
4answers
364 views
Many-to-many association with multiple self-joins in ActiveRecord
I am trying to implement multiple relations between records of the same model via self-joins (based on @Shtééf's answer). I have the following models
create_table :relations, force: true do |t|
...
6
votes
2answers
148 views
What is an operating system independent way to open file with associated program from C++?
What is an operating system independent way to open a file with associated program from C++? Is there a solution in Boost, or something like it?
More specifically, something that would cover Windows, ...
6
votes
3answers
1k views
Rails - Best-Practice: How to create dependent has_one relations
Could you tell me whats the best practice to create has_one relations?
f.e. if i have a user model, and it must have a profile...
How could i accomplish that?
One solution would be:
# user.rb
...
6
votes
1answer
4k views
Rails has_one :through association
Rails has a has_one :through association that helps set up a one-to-one association with a third model by going through a second model. What is the real use of that besides making a shortcut ...
6
votes
2answers
2k views
Could not find the association problem in Rails
I am fairly new to Ruby on Rails, and I clearly have an active record association problem, but I can't solve it on my own.
Given the three model classes with their associations:
# ...
6
votes
1answer
2k views
Multiple column foreign keys / associations in ActiveRecord/Rails
I have badges (sorta like StackOverflow).
Some of them can be attached to badgeable things (e.g. a badge for >X comments on a post is attached to the post). Almost all come in multiple levels (e.g. ...
6
votes
2answers
3k views
Hibernate unidirectional one to many association - why is a join table better?
In this document (scroll down to the Unidirectional section):
http://docs.jboss.org/hibernate/stable/annotations/reference/en/html_single/#entity-mapping-association-collections
it says that a ...
6
votes
2answers
3k views
Nested Object w/ Checkboxes - mass-assignment even with accepts_nested_attributes_for?
I thought that there should have been a simple solution to this, given that Rails 2.3 has this newfangled nested forms feature. Basically I want to create or update a user and assign them roles at the ...
6
votes
4answers
249 views
Are there any good professional associations for IT Managers/Programmers?
Are there any good professional associations for IT Managers that I could join and network with other managers to share ideas and information?
5
votes
2answers
123 views
How should I write the ActiveRecord when there are multiple associations?
The models are like this:
class Contract < ActiveRecord::Base
belongs_to :buyer, :class_name => 'Customer', :foreign_key => 'buyer_customer_id'
belongs_to :user, :class_name => ...
5
votes
2answers
86 views
Using bidirectional associations from domain objects in @Transactional Junit Tests
I have a @Transactional JUnit Test set up and I want to persist some test data to the database and also test if the associations are correct.
However, when testing the associations, they always ...
5
votes
1answer
268 views
Rails has many and belongs to one
I have a User model which has many projects and a Project model which can have many users, but also belongs to a single user (ie the user who created this project). It must belong to a User. It also ...
5
votes
1answer
274 views
PHP Doctrine : how to set refClass extra columns?
I have the following schema
User:
columns:
id:
type: integer
primary: true
name: string
relations:
UserGroup:
local: userGroup_id
foreign: id
...
5
votes
1answer
339 views
Why does Rails generate duplicate SQL conditions when using scopes with associations?
I have setup a model structure which allows different models to associate with a File model through a has_many ... :through ... association which is also polymorphic so that a File can belong to many ...
5
votes
3answers
385 views
How do I prevent deletion of parent if it has child records?
I have looked through the Ruby on Rails guides and I can't seem to figure out how to prevent someone from deleting a Parent record if it has Children. For example. If my database has CUSTOMERS and ...
5
votes
1answer
644 views
Rails has_many :through and Setting Property on Join model
Similar to this question, how do I set a property on the join model just before save in this context?
class Post < ActiveRecord::Base
has_many :post_assets
has_many :assets, :through => ...
5
votes
1answer
1k views
rails override default getter for a relationship (belongs_to)
So I know how to override the default getters for attributes of an ActiveRecord object using
def custom_getter
return self[:custom_getter] || some_default_value
end
I'm trying to achieve the same ...
5
votes
3answers
1k views
Specifying the foreign key in a has_many :through relationship
I have the following three models: User, Project, and Assignment.
A User has_many Projects through an assignment. However, Assignment actually has two foreign keys that relate to a User: user_id ...
5
votes
4answers
816 views
rails has_many :through has_many :through
I'm wondering to what extent I can use associations in Rails. Take into consideration the following:
class User < ActiveRecord::Base
has_one :provider
has_many :businesses, :through => ...
5
votes
2answers
5k views
iPhone file extension app association
On my iPhone, I'm running an app called Caissa Chess. After registering the app with the manufacturer (this is optional) I received an email, containing a chess puzzle. The crucial part of the mail ...
5
votes
4answers
2k views
How can I define a polymorphic relation between models in Django?
I am working on a Django application which contains an Offer model. An Offer instance contains the pricing conditions and points to a product definition. The product model is actually a hierarchy (I ...
5
votes
1answer
1k views
Problem with self-referential has_many :through associations in Rails
I was reading about self-referential has_many :through data situations today, because I'm trying to build a Rails application that uses them. I found this example situation on the Internet, and I have ...
4
votes
3answers
164 views
Challenging Rails Question with Form Based on Existing Resources
You have a set of related models created through a scaffold e.g. a house, which has many rooms, which each have many windows, which each has a selection of locks.
These resources are already full of ...
4
votes
2answers
2k views
How to use ActiveAdmin on models using has_many through association?
I am using ActiveAdmin gem in my project.
I have 2 models using has_many through association. The database schema looks exactly the same as the example in RailsGuide. ...
4
votes
1answer
128 views
ROR 3 defining foreign key relationship
I'm having trouble finding a good tutorial on how to define basic foreign key relationships between models. suppose I have a User model and a Game model..
I would like to define two fields in the ...
4
votes
1answer
90 views
EF - Add to an association set by Id
Say I have a many to many relationship:
Song *---* Artist
I'm at a point in my code where I want to add an artist to the song. I know the artist's ID, but I don't have an instance of the Artist ...
4
votes
2answers
686 views
Rails: Save collection of updated records all at once
As I understand it, the build method can be used to build up a collection of associated records before saving. Then, when calling save, all the child records will be validated and saved, and if there ...
4
votes
3answers
99 views
Rails: If Foo has_many :bars, do all :bars need to belong_to a Foo?
I'm working on an app that has a lot of photos in it, which are contributed by users. The photo-sharing aspect is the primary purpose of the app.
Sometimes it's helpful to create featured ...
4
votes
2answers
1k views
Does Rails 3 have find_by association magic?
Specifically, let's assume that we have two sensible models:
TieDyeCentipede, which has_many :legs
Leg, which has a :color attribute.
Being a TieDyeCentipede, no two legs are ever the same color. ...
4
votes
2answers
790 views
Is it possible to get the ActiveRecord::Relation object for an association
Do association methods, such as those defined by has_many and belongs_to utilize ActiveRecord::Relation?
If so, is it possible to get the ActiveRecord::Relation object that is being used.
We're all ...
4
votes
1answer
2k views
Form with nested attributes with a has_one association not working in Rails 3
I'm tring to set values for two models that have a has_one association using accepts_nested_attributes_for, but nothing in the fields_for is being shown on the view.
I have confirmed the same code ...
4
votes
2answers
462 views
Automapper - Bestpractice of mapping a many-to-many association into a flat object
I have two entities: Employee and Team.
What I want is an EmployeeForm that has the Name of the Team.
How can I achieve this using AutoMapper?
My current "solution" is the following:
...
4
votes
3answers
557 views
What is the importance of association multiplicity in class diagrams?
What is the importance of association multiplicity in class diagrams?
Why and when should we indicate them?
Thanks.