在Ecto中按DateTime查询

时间:2015-05-14 19:28:21

标签: elixir phoenix-framework ecto

这是我尝试过的。

date = Ecto.DateTime.from_erl(:calendar.universal_time())
query |> where([record], record.deadline >= ^date)

我也试过

date = Ecto.DateTime.from_erl(:calendar.universal_time())
query = from m in MyApp.SomeModel,
      where: m.deadline >= ^date,
      select: m

两者都返回相同的消息

value `%Ecto.DateTime{..}` in `where` cannot be cast to type :datetime in query

根据我的理解,我应该在我的查询中使用Ecto.DateTime。也许我错过了一些明显的东西?谢谢!

1 个答案:

答案 0 :(得分:10)

:datetime类型是本机类型,仅适用于元组。如果在模式中将列类型设置为Ecto.DateTime,则它将能够使用更高级别的类型,如Ecto.DateTime结构。