Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7056147
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:49:59+00:00 2026-05-28T03:49:59+00:00

I have three models: RaceCards, Races and Wagers. class RaceCard < ActiveRecord::Base has_many :races

  • 0

I have three models: RaceCards, Races and Wagers.

class RaceCard < ActiveRecord::Base
has_many :races
has_many :wagers
end

class Race < ActiveRecord::Base
belongs_to :race_card
has_many :wagers, :through => :race_card
end

class Wager < ActiveRecord::Base
belongs_to :race_card
has_many :races, :through => :race_card
end

rails g model RaceCard race_card_date:date number_of_race:integer

rails g model Race race_card_id:integer race_nbr:integer

rails g model Wager race_nbr:integer race_card_id:integer wager_type:string payoff:integer

So if I do this in console:

Wager.first.races  #All races on the race card are returned. Good!

But I want a way of determining what races are returned so I add a condition:

if I add this:   :condition =>{:race_nbr => 1}

Wager.first.races  #Return just race 1, but this is static (always set to 1)

My question is how do I set the condition to the race_nbr in the Wager model:

:condition => {:race_nbr => wager.race_nbr}  #throws an error
:condition => {:race_nbr => self.race_nbr}   #throws an error

I’ve tried a lot of other things and just can’t seem to get it. Any guidance would be appreciated. Thanks in advance.

Update: I’ve now tried the solution suggested by PinnyM below

:condition => "wagers.race_nbr = races.race_nbr" #unfortunately this yields the following:

SQL error or missing database (no such column wagers.race_nbr)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T03:50:00+00:00Added an answer on May 28, 2026 at 3:50 am

    You can do this using scopes:

    def Race < ActiveRecord::Base
      scope :for_race_nbr, lambda { |race_nbr| where(:race_nbr => race_nbr) }
    end
    
    def Wager < ActiveRecord::Base
      def races_for_race_nbr
        races.for_race_nbr(race_nbr)
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have three models: class Address < ActiveRecord::Base has_many :jobs end class Category <
I have three models: class A < ActiveRecord::Base has_many :bs end class B <
I have three models : class LevelTwoArea < ActiveRecord::Base has_many :places, dependent: :restrict end
I have three models defined as follows: class Comic < ActiveRecord::Base has_many :feeds end
I have three models: class Tenant < ActiveRecord::Base has_many :sites end class Site <
I have three models: class Book < ActiveRecord::Base has_many :collections has_many :users, :through =>
I have three models that look something like this: class Bucket < ActiveRecord::Base has_many
I have three Models setup with the following associations class User < ActiveRecord::Base has_many
I have three models User , Subject and Grade . class User< ActiveRecord::Base has_many
I have three models presented in a multi-model form. class Parent < ActiveRecord::Base has_many

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.