Nested Embeds
Hi,
I'm trying to create a resource with nested Embeds
e.g.
But it seems Ecto cannot load structures like this If I understood this Issue https://github.com/elixir-ecto/ecto/issues/1256 correctly.
Is this just a limitation we have to live with?
I'm trying to create a resource with nested Embeds
e.g.
But it seems Ecto cannot load structures like this If I understood this Issue https://github.com/elixir-ecto/ecto/issues/1256 correctly.
Is this just a limitation we have to live with?
GitHub
Given the following schema: defmodule Test.TimeEntry do use Ecto.Schema alias Timex.Ecto.DateTime schema "time_entries" do field :description, :string field :started_at, DateTime ...
