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

  • Home
  • SEARCH
  • 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 6587455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T16:55:08+00:00 2026-05-25T16:55:08+00:00

I noticed that by programmatically traversing from a parent object to a child object,

  • 0

I noticed that by programmatically traversing from a parent object to a child object, and then back again, that the parent object I get back is not the same as the original one.

For example:

Parent class: Car

Child class: Seat

A car has many seats

puts(@car.to_s) => a memory address

puts(@car.seats.first.car.to_s) => totally different address

I noticed this because I recently added a new string field to Car through a migration, and by trying to read it by traversing the relationship back from seat, that field was always nil! However, adding the field to the scaffold view and checking the database, the new field and values are there.

It’s weird because all the old fields are available. It’s only the new one that is not. For what it’s worth, the second-to-last field is also a string.

What is going on under the hood? What do I need to do? Thanks!

  • 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-25T16:55:09+00:00Added an answer on May 25, 2026 at 4:55 pm

    Let’s suppose by Parent and Child class, you mean Car has_many Seats. You could try to tell ActiveRecord that one relation is the inverse of the other.

    class Car < ActiveRecord::Base
        has_many :seats, :inverse_of => :car
    end
    
    class Seat < ActiveRecord::Base
        belongs_to :car, :inverse_of => :seats
    end
    

    So, to quote the Rails documentation, doing so will let you things like that :

    d = Dungeon.first
    t = d.traps.first
    d.level == t.dungeon.level # => true
    d.level = 10
    d.level == t.dungeon.level # => true
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I noticed that you can call Queue.Synchronize to get a thread-safe queue object, but
i noticed that paypal displays a very different favicon, one that's not just a
I noticed that the generic IEnumerator<T> inherits from IDisposable, but the non-generic interface IEnumerator
I noticed that adding a MenuStrip (from the Toolbox) to my form design doesn't
I'm developing on iOS and I'm building my views programmatically. I noticed that when
I added two APN configurations and then scanned the APN database. I noticed that
I noticed that Google maps is providing directions in my local language (hungarian) when
I noticed that my Designer.vb file of one of my forms has a lot
We noticed that lots of bugs in our software developed in C# (or Java)
I noticed that there is one change about ASP.NET Routing. I cannot understand why

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.