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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:04:44+00:00 2026-05-20T10:04:44+00:00

I wouldn’t think there is a difference when it comes to active record and

  • 0

I wouldn’t think there is a difference when it comes to active record and finding data.

Here are my models

class User < ActiveRecord::Base
  has_many :shows
end

class Show < ActiveRecord::Base
  belongs_to :user
end

When I use the rails console I can do the following and it works.

u = User.find(1)
u.shows

It gives me all the shows for that user.

However when I do

u = User.where("username = ?", "percent20")
u.shows # this is doesn't work gives me a now instance error

I get the same user and relevant information, but not the relationship. The only problem I can see is maybe I am doing something wrong because there is some difference between where and find.

Any help is appreciated.

  • 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-20T10:04:44+00:00Added an answer on May 20, 2026 at 10:04 am

    The problem is not the relationship.

     u = User.find(1) 
    

    returns one User

     #return a Set of users. In your case its only one user.
     u = User.where("username = ?", "percent20") 
    

    The result type is ActiveRecord::Relation –> [User, User, User]

    use e.g. first to get the first User

     #returns the first user
     u = User.where("username = ?", "percent20").first
    

    u.class.name
    => “User”

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Why wouldn't I choose abstract? What are the limitations to declaring a class member
I wouldn't dare do anything complex in a database without transactions. There is nearly
I wouldn't expect so. Is there anything to point out?
I wouldn't think its possible at all, but I'm just wondering because my friend
I know it wouldn't be exactly equivalent to $this, but is there a way
This is a rather simple example and probably wouldn't make much of a difference
Are there any reasons why you wouldn't use Code Contracts to enforce business rules?
Is there a particular reason why you wouldn't use a natural identifier like an
So I wouldn't be stupid enough to ask this in general, but here's the
I'm not talking about a session - this data wouldn't be persisted between requests.

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.