ecto

    1熱度

    1回答

    我需要config.exs定義多個外生回購多個外生回購,但我不希望由一個定義它們一個: config CC, CC.Repo.S0, adapter: Ecto.Adapters.Postgres, hostname: "192.168.0.100", database: "postgres", username: "postgres", pass

    4熱度

    1回答

    我是新來的使用Ecto和Elixir,我遇到了一個我無法解釋的錯誤。我的代碼看起來就像Ecto自述文件中的示例。 這裏是我的外生模型和查詢 defmodule Registration do use Ecto.Model schema "registrations" do field :user_id, :string field :created_at,

    5熱度

    1回答

    從數據庫中加載日期/時間類型時,Ecto將轉換爲Ecto.DateTime類型。如何能在同類型的鑄造從一個JSON字符串 defmodule Rocket.User do use Rocket.Model schema "users" do field :created_at, :datetime field :name, :string fie

    1熱度

    1回答

    有沒有一種方法Ecto.Entity或Ecto.Model規定將返回一個Dict在模型中定義的字段及其值?

    8熱度

    2回答

    我正在玩Elixir & Ecto的東西。我想創建自定義的SQL查詢,它使用了一些特定於postgres的權限(在這種情況下:它搜索postgres數組)。 這裏就是我想要做的事: iex(5)> query = from g in MyModel, where: "'sample_tag' = ANY(tags)", select: g #Ecto.Query<from g in MyModel

    7熱度

    1回答

    我想從phoenix中的ecto協會生成JSON。 這是我的聯想: defmodule Blog.Post do use Ecto.Model schema "posts" do field :title, :string field :body, :string has_many :comments, Blog.Comment end