Domande taggate «has-many-through»

3
come aggiungere record a has_many: tramite associazione in rails
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 Come aggiungo al Agentsmodello perCustomer ? È questo il modo migliore? Customer.find(1).agents.create(customer_id: 1, house_id: 1) Quanto sopra funziona bene …

5
Come impostare la fabbrica in FactoryGirl con l'associazione has_many
Qualcuno può dirmi se sto eseguendo la configurazione nel modo sbagliato? Ho i seguenti modelli che hanno associazioni has_many.through: class Listing < ActiveRecord::Base attr_accessible ... has_many :listing_features has_many :features, :through => :listing_features validates_presence_of ... ... end class Feature < ActiveRecord::Base attr_accessible ... validates_presence_of ... validates_uniqueness_of ... has_many :listing_features has_many :listings, …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.