我正在尝试将一个实体A建模为仅追加,而另一个子实体引用第一个。因此,A具有如下结构(按inserted_at DESC
排序):
| id | version | column | inserted_at |
|------|-----------+---------|-------------|
| 5 | 2 | "baz" | 2020-04-20 |
| 3 | 2 | "zoot" | 2020-04-20 |
| 3 | 1 | "bar " | 2020-04-18 |
| 5 | 1 | "foo" | 2020-04-10 |
[(id, version)
构成A的主键(一个人也可以执行(id, inserted_at)
,但开发人员认为版本号更具可读性。]]
现在B属于A,每个B都将恰好与一对(id, version)
对A对应。所以类似:
| id | a_id | a_version | column | inserted_at |
|------|-------+-----------+---------+-------------|
| 4 | 5 | 2 | "pigs" | 2020-05-05 |
| 3 | 5 | 2 | "goats"| 2020-05-03 |
| 2 | 5 | 1 | "rams" | 2020-05-02 |
| 1 | 3 | 1 | "bears"| 2020-04-18 |
我的问题是,我如何使用Ecto模式对它们进行建模?我想我从阅读文档中知道A模式是什么样的,除了has_many
:
defmodule MyASchema do
use Ecto.Schema
@primary_key false
schema "table_a" do
field :id, :id, primary_key: true
field :version, :integer, primary_key: true
field :column, :string
field :inserted_at, :utc_datetime
has_many :bs, MyBSchema # what goes here for :foreign_key?
end
end
但是我对B模式(特别是belongs_to
)不太清楚:
defmodule MyBSchema do
use Ecto.Schema
@primary_key
schema "table_b" do
field :id, :id, primary_key: true
field :column, :string
field :inserted_at, :utc_datetime
# how does belongs_to work here? would it be
#
# belongs_to :a, MyASchema, primary_key: [:id, :version]
#
# or
#
# belongs_to :a, MyASchema, define_key: false
# field :a_id, :id
# field :a_version, :integer
#
# ? If so, how could I query such that the :a field of the
# struct is populated?
end
end
很高兴进一步澄清,感谢您的阅读和任何帮助🙂
根据Elixir forum,Ecto在使用关联时不支持复合外键。
一种解决方案是添加一个“常规”唯一主键(例如,一个自动递增的整数或UUID),并根据该ID建立引用。有时您在使用数据库抽象层时会感到安慰,因为当数据库具有简单的单列主键(即非组合主键)时,关系更容易定义。
如果无法更改数据库架构,那么您将需要在代码中手动解析关联。您可能需要设置this post概述的多个交易。