4

我是使用 Ecto 和 Elixir 的新手,遇到了一个我无法解释的错误。我的代码看起来就像 Ecto README 中的示例。

这是我的 Ecto 模型和查询模块

defmodule Registration do
  use Ecto.Model

  schema "registrations" do
    field :user_id, :string
    field :created_at, :datetime, default: Ecto.DateTime.local
    field :updated_at, :datetime, default: Ecto.DateTime.local
  end
end

defmodule RegistrationQuery do
  import Ecto.Query

  def by_user(user_id) do
    query = from r in Registration,
          where: r.user_id == ^user_id,
         select: r
    Repo.all(query)
  end
end

这是我如何调用查询函数

registrations = Repo.all RegistrationQuery.by_user("underwater")

这一切似乎与 Ecto 文档完全一致,我找不到任何其他说法。但我收到以下错误。

protocol Ecto.Queryable not implemented for [%Ensalutilo.Registration{user_id: "underwater"}]
4

1 回答 1

6

您的by_user/1函数已经在调用Repo.all,因此当您registrations = Repo.all(...)稍后调用时,您将第一个结果Repo.all作为参数传递,这是您在错误消息中看到的列表!

需要明确的是,您会收到此错误消息,因为您可以将任何实现 Ecto.Queryable 协议的内容传递到 Repo.all。

于 2014-12-27T22:09:45.783 回答