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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T04:44:46+00:00 2026-05-16T04:44:46+00:00

Is it possible for a model to belong_to, two models and have a nested

  • 0

Is it possible for a model to belong_to, two models and have a nested relationship?

i.e of what i want

class trainer
has_many :appointments
end

class appointment
belong_to :trainer, :customer
end

class customer
has_many :appointments
end

at the moment i have only the customer and appointment models which are nested e.g of what i have:

create method looks like this:

  def create
    @appointment = @customer.appointments.build(params[:appointment])

    respond_to do |format|
      if @appointment.save
        format.html { redirect_to([@customer, @appointment], :notice => 'Appointment was successfully created.') }
        format.xml  { render :xml => @appointment, :status => :created, :location => @appointment }
      else
        format.html { render :action => "new" }
        format.xml  { render :xml => @appointment.errors, :status => :unprocessable_entity }
      end
    end
  end

in routes i have:

  map.resources :patients, :has_many => [ :appointments, :visits ]

is it possible to have 2 nested relationships for 1 model? what would i have to change my create method to, if appointment also belonged to trainer as well as customer?

thanks

  • 1 1 Answer
  • 1 View
  • 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-16T04:44:47+00:00Added an answer on May 16, 2026 at 4:44 am

    Assuming that you’re using ActiveRecord: Having a model belong to more than one other model is possible of course (however you need to specify one belongs_to statement for each relation).

    class Appointment < ActiveRecord::Base
      belongs_to :trainer
      belongs_to :customer
    end
    

    A belongs_to relation does not necessarily mean that the record actually has that other record related; it can also be nil. So you can have appointments that belong to a trainer but no customer and vice versa.

    Actually you can even have neither a trainer nor a customer or both a trainer and a customer as well this way – if this violates your business logic, you might want to add a validation to prevent this.

    Your existing controller create method should continue to work like it is, you just need to add the handling of trainer records. You can even use the same controller for handling appointment of trainers and customers by abstracting trainers and customers, e.g. into a person like this:

    class AppointmentsController < ApplicationController
    
      def create
        @appointment = person.appointments.build(params[:appointment])
        # ...
      end
    
    protected
    
      def person
        @person ||=
          if params[:trainer_id]
            Trainer.find(params[:trainer_id])
          elsif params[:customer_id]
            Customer.find(params[:customer_id])
          end
      end
    end
    

    This way, you can use the same AppointmentsController for both routes

    # Use AppointmentsController for /trainers/123/appointments
    # as well as for /customers/123/appointments
    map.resources :trainers, :has_many => :appointments
    map.resources :customers, :has_many => :appointments
    

    Of course, this only makes sense if the logic and views behind trainer appointments and customer appointments are almost the same. If not, you can also use different controllers

    # Use TrainerAppointmentsController for /trainers/123/appointments and
    # CustomerAppointmentsController for /customers/123/appointments
    map.resources :trainers do |trainer|
      trainer.resources :appointments, :controller => 'trainer_appointments'
    end
    map.resources :customers do |customer|
      customer.resources :appointments, :controller => 'customer_appointments'
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Without having the full module path of a Django model, is it possible to
Is it possible to create/have a non-modal .net OpenFileDialog I have a UI element
I'm wondering if it's possible to define a foreign key in a models.py file
Possible Duplicate: How does the Google Did you mean? Algorithm work? Suppose you have
Would it be possible to show an image in full screen mode using silverlight.
Possible Duplicate: Why not use tables for layout in HTML? Under what conditions should
Possible Duplicate: NAnt or MSBuild, which one to choose and when? What is the
Possible Duplicate: How do I calculate someone's age in C#? Maybe this could be
Possible Duplicate: .NET - What’s the best way to implement a catch all exceptions
Possible Duplicate: What Ruby IDE do you prefer? I've generally been doing stuff on

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.