2

假设我们的应用程序中有以下模型:

# AR model
class Foo < ActiveRecord::Base
  belongs_to :bars # this is an association pointing to a Mongoid model
end

# Mongoid model
class Bar
  include Mongoid::Document  
  belongs_to :foo # this is an association pointing to a AR model
end

是否可以在指向 AR 模型的 Mongoid 模型中创建关联,反之亦然?

4

1 回答 1

2

为此,我们使用Tenacity(也称为“Polyglot Persistence”)。它工作得非常好,尽管有一些限制。所有者/维护者 JWood 反应迅速,修复了错误并合并到我很快发送的拉取请求中。

于 2012-07-10T18:23:24.870 回答