Associations typically refer to relationships between models in ORMs such as ActiveRecord.

learn more… | top users | synonyms (1)

0
votes
1answer
9 views

Scope to fetch Associated data from Database Rails 3

Basically i wanted to use scope to fetch data using association. Association between user and posts. belongs_to :user # on posts model has_many :posts, :dependent => :destroy #on user model ...
1
vote
1answer
10 views

rails belongs_to foreign key is null

i have the following models class User has_many :projects, :through => :bids has_many :bids, :dependent => :destroy end class Project attr_accessible :name, :user_id has_many :users, ...
1
vote
2answers
26 views

Association through non-standard column?

I have a Friends model with user_id and friend_id...both are id's back to specific users. What I'd like to able to do is something like this: @relationship = Friend.find_by_user_id(current_user.id) ...
0
votes
1answer
31 views

Association, Aggrgation and Composition in UML Diagram

So I have some question about the association, aggregation and composition in UML diagram. Here is some scenarios : Product review rating composition to product review. This means that for each ...
0
votes
1answer
34 views

How to model an owner and members with a has_many :through association?

In my rails application I have Event and User models. The business rules dictate that an Event has one owner and many members, and the owner must be a member. The inverse would be User having many ...
0
votes
0answers
14 views

SQLAlchemy Declarative Bi-Directional Association: append and value set at once

GENERAL QUESTION Is it possible to append an association and set a value(s) to be stored in association table in one command? CODE To do so, I'm working on one of more interesting examples of ...
0
votes
2answers
30 views

Why is The navigation property '' declared on type '' has been configured with conflicting multiplicities. error show up?

I am sorry if there is very little information provided, but I am in a rush. I have an Asp_Users table and a Resource tables. Also, in the Entity Framework world, I have a Asp_Users POCO and a ...
2
votes
2answers
72 views

Rails validation for has_one relation

I have two model like: class Employee field :name field :login, type: Boolean has_one :user end class User field :username field :email belongs_to :employee validates_presence_of ...
0
votes
1answer
38 views

Using checkboxes in a belongs to and has one relationship

On the "show" page of my "Account" model I a have a "Checklist" model. I want to be able to check on/off the each of the boolean values on the checklist within the account's show page. I'm getting the ...
0
votes
0answers
21 views

Courses relationship

I am having trouble choosing the proper association between by classes. I am trying to implement the relationship of college majors and minors in respect to different courses. A major will have many ...
1
vote
1answer
23 views

Ruby on Rails: getting associated values to display

I'm trying to create some kind of activity feed, and I'm having trouble getting the values I need to. I have a controller with this action def show @user = User.find(params[:id]) @ideas = ...
0
votes
1answer
17 views

Rails Device and has_many association with promotions privilege

I have two models User and Promotion, an user can create has_many promotion and an promotion belong to user, for the users i used devise so: when I delete a promotion, I would like that the users ...
0
votes
1answer
40 views

polymorphic association with separate forms

I have one model, User, and then 2 other models: Editor and Administrator associated with the user model via a polymorphic association, so I want to have 2 type of users, and they will have different ...
0
votes
1answer
20 views

Where is the model association made?

Here is my data structure: class Report < ActiveRecord::Base has_many :keywords end class Keyword < ActiveRecord::Base belongs_to :report end When a Report is created, Keyword data is ...
1
vote
1answer
46 views

Several associations as one

How can I get the same result, but like posts method is a simple association? I want to do this: "user.posts.active". Is the best solution to define :finder_sql ? class User < ActiveRecord::Base ...
0
votes
1answer
19 views

Ruby on rails : associations with multiple columns on non id key

I try to implement a simple app where I have users and I get the users friendships from a social network. I have two models with the following columns: User : id (the default id) sn_id (the id from ...
0
votes
1answer
36 views

has_many association between models

I have a rake task that allocates a score when comparing a prediction and result, at the moment the relationship is a has_one, as in a prediction has_one :result.. I want to change this to a ...
0
votes
0answers
14 views

How to select all records where related collection is empty with Mongoid

I'm still getting the hang of MongoDB and Mongoid and have hit this snag. Let's say I have a User that has_and_belongs_to_many items and of course an Item that has_and_belongs_to_many users. I'd ...
0
votes
1answer
21 views

Rails has_one per scope

I have three models as follows: class User < ActiveRecord::Base ... has_many :feeds ... end class Project < ActiceRecord::Base ... has_many :feeds ...
0
votes
1answer
16 views

Rails Form Association Automatically New

I have a rails form for movies. In this form is Title and Trailer_id (which has the youtube url) Trailer_id is an association with the trailers scaffold. So when I go to /trailers/new and add a new ...
0
votes
1answer
17 views

Link in Nested Forms returning Invalid Association

I'm using Nested Forms to create a complex list of forms for a group of models associated with it. However, when I add the link_to_add link in my form it returns an error message, Invalid ...
0
votes
1answer
46 views

Ruby on rails NoMethodError in controller after create an association

I have two models User and Promotion, an user can create has_many promotion and an promotion belong to user so : promotion.rb class Promotion < ActiveRecord::Base belongs_to :user belongs_to ...
0
votes
1answer
40 views

Rails: Get all associated models from has-many association

I need to get all associated models from the other associated model, on which I want to run query first. For example, I got Post model and Tag model. I need to get all Posts, which associated with ...
0
votes
1answer
25 views

JPA @OneToMany relationship to @Embedded class used as @Id

I have a problem (and I'm not sure if it is possible) whit an association and an embedded id using JPA... I have a Person class with it's id: @Entity public class Person{ @EmbeddedId ...
0
votes
0answers
8 views

Adding an assocation entity using Doctrine methods won't insert the foreign key

Considering this simple action of creating a new wishlist. It works properly until one point: It cascades the relation between User and Wishlist, but it doesn't insert the foreign key into the ...
0
votes
3answers
57 views

Grab id from another model and then save it into a new model

Really trying to get my head around the following situation. I am grabbing football results via a screen scrape and saving them to a model (result), ok so far.... I have some associations setup ...
0
votes
2answers
23 views

Ruby on Rails w/ Devise - AssociationTypeMismatch User expected

I'm new to RoR and I'm struggle with the creation of an Authorization instance which belongs to a User. It works fine when the user doesn't exist, create the user and it's first authorization. But I ...
0
votes
1answer
24 views

Source of the New and Create Methods in Rails ActiveRecord while using Associations

I was wondering what the source (i.e., defining class or module) of the New and Create methods is while using associations in Rails. For example, the Associations section of the Rails guides ...
0
votes
1answer
35 views

cakephp Database Design

My data structure is as follows: Company hasMany Regions Region hasMany Markets Market hasMany Stores Store hasMany Employees I also have the appropriate belongsTo where necessary. I used foreign ...
0
votes
1answer
29 views

Create an object with several associations

If I have a user and article model with an association has_many :articles and belongs_to :user, I would write user.articles.new to create a new article object with the correct user_id . So my question ...
0
votes
2answers
39 views

Setting up the correct model association Rails 3

Im trying to figure out the best path here, a previous question hasn't shed much light on the matter, but thats probably due to my explanation, so im going to try and break it down into smaller chunks ...
0
votes
1answer
41 views

SQL - Why isn't my query working?

I have a PHP/MySQL application where I have users, groups, and rights : Each user can be in 0..N groups Each group can have 0..N users Each user can have 0..N rights Each right can be granted to ...
0
votes
1answer
30 views

Can a managed bean extends a DTO

I have 2 classes (managed beans) in my business that of type X, the 2 classes merely have the same attributes except for 3 attributes, can i make a DTO contains all the attributes in the 2 beans and ...
0
votes
0answers
25 views

Rails Join table not populated after form submit

I am trying to set up a join table for categories/video-posts called categorizations. It all seems fine however, when the create video_form is submitted, the join table is not populated. So firstly is ...
1
vote
1answer
27 views

Rails - Eager Load Association on an Association

EDIT - Using 'includes' generates a SQL 'IN' clause. When using Oracle this has a 1,000 item limit. It will not work for my company. Are there any other solutions out there? Is it possible to ...
0
votes
0answers
27 views

Rails associations: hash of ids within one column needed?

I have a User model and a Company model, and I want each user to have a variable number of companies (that they have worked at), that can be pulled by e.g. current_user.companies. The list of ...
0
votes
4answers
22 views

Do I need to create an assocation table for a :has_many :through association?

I'm trying to use a :has_many :through type association, but I'm getting the following error: ActiveRecord::StatementInvalid: SQLite3::SQLException: no such column: work_units.developer_id: Many ...
1
vote
1answer
28 views

Foreign Keys pointing to same Model

I have an User model class User < ActiveRecord::Base attr_accessible :email, :name has_many :client_workouts end And a ClientWorkout model class ClientWorkout < ActiveRecord::Base ...
1
vote
2answers
57 views

User/Address association in Rails

I'm working on my first Rails project and I'm trying create a proper User/Address (or rather User/Location) association. I thought my problem was common and that others had done what I'm trying ...
0
votes
1answer
22 views

Is it possible to extend the ActiveRecord association definition later?

I have a Quiz, which has many Questions. I want to be able to change the order of those questions inside a quiz. But I don't want to use gems such as acts_as_list, because then I would have to store ...
2
votes
1answer
37 views

Rails Merge child errors with Parent errors

I've got the following two (sanitized/stylized) models: class DrivingExam < ActiveRecord::Base belongs_to :dmv_rules has_many :invigilator_assignments, as: :assignable has_many ...
1
vote
2answers
30 views

Ruby on rails: Trouble creating an object with multiple associations

I am having a problem with creating an object with an association. I have a Message model that belongs_to a job, and a user or runner. Inside my jobs/index.html I want to show a list of jobs with ...
-1
votes
1answer
32 views

Rails association for post and location - has_many and belongs_to

I am creating a Post model which has one Location. A Location can be in many Posts. For this relationship, I created the field location_id in Post. I was wondering to do the following belongs_to and ...
0
votes
0answers
15 views

how to validate count of created has_meny association obj., for object their belong_to in ruby on rails 3.2

how to validate count of created has_meny association obj., for object their belong_to I need a custom validation for max/min count of associated object. I have Realty, that has has_many ...
0
votes
3answers
43 views

nester attributes for has_many are not shown if the form fails validation

If form fails validation, fields for has_many association, disappears from view: my new action looks like def new @realty = Realty.new @realty.build_user @realty.build_address #user, address ...
0
votes
1answer
32 views

Saving new associated records in CakePHP

So I have a Message model. When a message is created, I want to create new Recipient records. (Message hasMany Recipient, Recipient belongsTo Message). The intent is that the message_id field in ...
0
votes
1answer
39 views

Fields_for with nested attribute, has_many through association

I have 3 models - standards, layers, and layers_assocs. Standards has many layers through layer_assocs and the rest is trivial. The layers_assocs table stores the standards_id, layer_id and a visible ...
0
votes
1answer
14 views

ActiveRecord include associations missing records

I'm making the following query PortfolioDistribution.joins(:portfolio_distribution_split). select('policy_number, reinvestment_date, reinvestment_units, reinvestment_units, split_name, ...
0
votes
1answer
32 views

rails find similar products other customers ordered

I have a simple app where users can view products and preorder them so they have one in stock when they get released. A Product has many preorders, and many users through preorders. A User has many ...
0
votes
2answers
26 views

What is wrong in our Rails modeling mentality?

If Users --> students // employee (single table inheritence), and they both belong to a Organization --> School // Work (single table inheritance), what is the proper way to write the association? I ...

1 2 3 4 5 48