MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

activerecord e ponte mongo/mongo-mapper

Questo ha funzionato magnificamente

Posiziona il modello

  key :location_id, Integer, :required => true

    def location
        Location.find(location_id)
    end

modello di località

  def self.find_places(id)
    Property.find_by_location_id(id)
  end

  def find_places
    Property.find_by_location_id(id)
  end