我是新來的使用Ecto和Elixir,我遇到了一個我無法解釋的錯誤。我的代碼看起來就像Ecto自述文件中的示例。 這裏是我的外生模型和查詢 defmodule Registration do
use Ecto.Model
schema "registrations" do
field :user_id, :string
field :created_at,
從數據庫中加載日期/時間類型時,Ecto將轉換爲Ecto.DateTime類型。如何能在同類型的鑄造從一個JSON字符串 defmodule Rocket.User do
use Rocket.Model
schema "users" do
field :created_at, :datetime
field :name, :string
fie
我正在玩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
我想從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