克隆Ecto记录。嵌入和相关记录?

时间:2016-06-30 08:12:05

标签: elixir phoenix-framework ecto

克隆Ecto模型/记录的最简单方法是什么?我有一个样品配方模型,包含许多成分和嵌入标签。

模型

defmodule App.Recipe do
use App.Web, :model

schema "recipes" do
  field :name, :string
  has_many :ingredients, App.Ingredient
  embeds_many :labels, App.Label
end

克隆食谱记录 如何克隆配方记录并创建用于插入新配方记录的变更集?

recipe = Repo.get(App.Recipe, 1)
recipe_changeset = Ecto.Changeset.change(recipe)

# ... Steps for cloning record with embeds?  

new_recipe = Repo.insert(recipe_changeset)

克隆配方和成分并为配料分配新配方ID

如何使用预装的ingrediens克隆配方记录,以便插入含有新成分的新配方记录?

recipe = Repo.get(App.Recipe, 1)
        |> Repo.preload(:ingredients)
recipe_changeset = Ecto.Changeset.change(recipe)

# ... Steps for cloning records?              

new_recipe = Repo.insert(recipe_changeset)

1 个答案:

答案 0 :(得分:1)

在再次插入之前,只需删除ID。

Repo.get(App.Recipe, 1)
|> Repo.preload(:ingredients)
|> whatever_you_wanna_do
|> Map.delete(:id)
|> Repo.insert