Domande taggate «mongoid»

4
Come implementare has_many: attraverso i rapporti con Mongoid e mongodb?
Usando questo esempio modificato dalle guide Rails , come si modella un'associazione relazionale "has_many: through" usando mongoid? La sfida è che mongoid non supporta has_many: through come fa ActiveRecord. # doctor checking out patient class Physician < ActiveRecord::Base has_many :appointments has_many :patients, :through => :appointments has_many :meeting_notes, :through => :appointments …
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.