3
কীভাবে has_many রেকর্ড যুক্ত করবেন: রেল সংঘের মাধ্যমে
class Agents << ActiveRecord::Base belongs_to :customer belongs_to :house end class Customer << ActiveRecord::Base has_many :agents has_many :houses, through: :agents end class House << ActiveRecord::Base has_many :agents has_many :customers, through: :agents end আমি কীভাবে Agentsমডেলটিতে যুক্ত করব Customer? এই সেরা উপায়? Customer.find(1).agents.create(customer_id: 1, house_id: 1) উপরের কনসোল থেকে সূক্ষ্ম কাজ করে …