Estoy compilando mi primera aplicación con mongoid y tengo problemas para eliminar un recurso incrustado. Tengo estos modelos:eliminando documentos incrustados con mongoid
class Article
include Mongoid::Document
field :body
embeds_many :comments
etc ..
class Comment
include Mongoid::Document
field :body
embedded_in :article, :inverse_of => :comments
end
No entiendo por qué no puedo borrar un comentario de un artículo
ruby-1.9.2-p290 :043 > @article.comments
=> [#<Comment _id: 4eb0e991a27d201ded000038, _type: nil, body: "foo", score: nil>]
ruby-1.9.2-p290 :045 > @article.comments.first.destroy
=> true
ruby-1.9.2-p290 :046 > @article.comments
=> []
ruby-1.9.2-p290 :047 > @article.save
=> true
ruby-1.9.2-p290 :049 > @article.reload
=> #<Article _id: 4eb0e991a27d201ded000037, _type: nil, body: "foo", title: ....
ruby-1.9.2-p290 :050 > @article.comments
=> [#<Comment _id: 4eb0e991a27d201ded000038, _type: nil, body: "foo", score: nil>]
Calling destruir (o eliminar) el el documento incrustado parece eliminarlo en la memoria, pero no desde el archivo db. ¡Cualquier idea sería muy apreciada!
Hola. ¿Encontraste una respuesta a esto? Realmente agradecería cualquier ayuda – Ben
lo siento - no - esto fue hace un tiempo, y no he seguido el proyecto – chrispanda