Tagged Questions
0
votes
2answers
166 views
activerecord newbie; get all profiles with gender male/female?
Im trying to get all the @participants where gender is male or female.
I have just surfaced AR and now digging into all the possibility's more but find it hard to get this query done.
user ...
1
vote
1answer
66 views
Listing records owned by the same model?
I have a simple Rails 3 application that has a number of models. A simple overview of the models I'm having trouble with is:
client model
has_many :animals
animal model
belongs_to :client
What ...
1
vote
1answer
75 views
newbie: activerecord joins ? some help converting sql to activerecord
Im trying to figure out how to do:
group
has_many participants
participant
belongs_to group
user
has_profile
profile
belongs_to user
Now Im trying to get all the participants from a group where ...
0
votes
1answer
87 views
Rails one-to-many relation , result is null
I have a simple database that has the following relation
Each Question has one Questiontype (3 different typs , such as Questiontype1 , Questiontype2 , Questiontype3 )
in Questiontype has ...
2
votes
2answers
2k views
Intersection of two relations
Say I have two relations that hold records in the same model, such as:
@companies1 = Company.where(...)
@companies2 = Company.where(...)
How can I find the intersection of these two relations, i.e. ...
0
votes
1answer
376 views
ActiveRecord::Relation cannot use named association in where clause of join
How do I use a named association in the where clause associated with a join?
class Pet < ActiveRecord::Base
belongs_to :owner
end
class Owner < ActiveRecord::Base
has_many :dogs, ...
1
vote
2answers
611 views
How to access joined table attributes in Rails3?
I am having trouble accessing the attributes of a join in Rails3.
There is two models/tables : Place and Address. One place can have many addresses (i.e. a specific street address, a "corner of" ...