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 8635663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:02:03+00:00 2026-06-12T10:02:03+00:00

I have the following model in rails application category => company => store Store

  • 0

I have the following model in rails application

category => company => store

Store has a belongs_to company and company has a belongs_to category relationship.
now i want to use a where method on a store object to retrieve all stores within the same category.

I would like to have something like this

@stores.nearbys(5).where("stores.company.category_id = xxx")

can somebody give me a tip on this

  • 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-06-12T10:02:05+00:00Added an answer on June 12, 2026 at 10:02 am

    Try joins with where on the joined table:

    @stores.nearbys(5).joins(:company).where("companies.category_id = xxx")
    

    EDIT:

    To get the category of a store you will first have to delegate the category method to its company:

    class Store < ActiveRecord::Base
     belongs_to :company
    
     delegate :category, :to => :company
    end
    

    Now just call the method in your query:

    @stores.nearbys(5).joins(:company).where("companies.category_id = ?", self.company.id)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have the following code in the rails company model: class Company include Mongoid::Document
I have a task to develop a rails application following the model for routing.
I have a rails application in which I implemented some feature. Now I want
I have a Rails 3.1.1 application with the following models: Company Member The two
I have an application in Rails 3.2.1 with a model which has a column
I have a Rails simple application that has two main models. A person model
I have an articles model in my Rails 3 application. The article model has
In a rails application, I have a number of attributes for a model called
In my rails application my models have a to_html method. This method is called
I have a Rails 2.3 application. I currently have the following validations in my

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.