has_many, through:
リレーションシップを持つモデルの 1 つのクエリにプリロードをプログラムでアタッチしようとしています。
私のモジュール:
defmodule MyApp.Chemical do
use MyApp.Web, :model
schema "chemicals" do
has_many :company_chemicals, MyApp.CompanyChemical
has_many :companies, through: [:company_chemicals, :companies]
field :name, :string
end
def with_companies(query) do
from chem in query,
left_join: comp_chem in assoc(chem, :company_chemicals),
join: company in assoc(comp_chem, :company),
preload: [companies: company]
end
end
defmodule MyApp.Company do
use MyApp.Web, :model
schema "companies" do
has_many :company_chemicals, MyApp.CompanyChemical
has_many :chemicals, through: [:company_chemicals, :chemicals]
field :name, :string
end
end
defmodule MyApp.CompanyChemical do
use MyApp.Web, :model
schema "company_chemicals" do
belongs_to :chemical, MyApp.Chemical
belongs_to :company, MyApp.Company
end
end
これらのモデルでは、入力されたフィールドMyApp.Chemical.with_companies/1
を持つ Chemical を生成するクエリを返す期待どおりに動作しますが:companies
、関連付けテーブルを介してプログラムでフィールドをプリロードする次のような関数を作成しようとしていました。
def preload_association(query, local_assoc, assoc_table, assoc_table_assoc) do
from orig in query,
left_join: association_table in assoc(orig, ^assoc_table),
join: distal in assoc(association_table, ^assoc_table_assoc),
preload: [{^local_assoc, distal}]
end
ただし、この関数はpreload: [{^local_assoc, distal}]
行のためにコンパイルされません。
has_many スルーである assoc をプリロードするにはどうすればよいですか? ありがとう。