0
私はいくつかの多型構造を持っています。これらの構造にはtestという名前のものがあります。エリクシル/エクトで多型構造のassocをあらかじめロードする
defmodule Test do
def generate_schema(options, type) do
quote do
schema "tests" do
field :name, :string
field :type, :string, default: unquote(type)
embeds_one :options, unquote(options), on_replace: :delete
many_to_many :teams, Team, join_through: "tests_teams", on_replace: :delete
end
end
end
def get_type_from_module(module) when is_atom(module) do
module
|> to_string
|> String.split(".", trim: true)
|> List.last
end
defmacro __using__(options) do
type = __CALLER__.module |> get_type_from_module
quote do
unquote(generate_schema(options, type))
end
end
end
多くのテストがあります。 TestA
defmodule Tests.TestA do
defmodule Options do
embedded_schema do
field :number_of_jumps, :integer
end
end
use Test, Options
end
この問題は、テストのためにチームをプリロードすることです。私は
Repo.get!(Tests.TestA, id)
|> Repo.preload(:teams)
を行うとき、私は
...
SELECT t0."id", ... , s1."id" FROM "teams" AS t0 INNER JOIN "tests" AS s1 ON s1."id" = ANY($1) INNER JOIN "tests_teams" AS s2 ON s2."test_a_id" = s1."id" WHERE (s2."team_id" = t0."id") ORDER BY s1."id" [[2]]
...
** (Postgrex.Error) ERROR 42703 (undefined_column): column s2.test_a_id does not exist
...
取得 '... S2に。 "test_a_idを" ...' '... S2に。 "test_id" ...' でなければなりません チームをどのように正しくプリロードできますか?