如何在Ecto中按两列的总和来订购查询?

时间:2016-08-29 19:48:05

标签: elixir ecto

尝试做这样的事情:

(from f in Foo,
 where: f.bar >= ^bar,
 order_by: f.cost1 + f.cost2,
 limit: 1) |> Repo.one

但是,通过抱怨表达无效,它并不喜欢这个命令。

还试过这个:

(from f in Foo,
 select: %{id: id, total: fragment("cost1 + cost2 as total")},
 order_by: f.total,
 limit: 1) }> Repo.one

这个并没有说明" f.total"不存在。

如何使此查询有效?

1 个答案:

答案 0 :(得分:6)

我不确定为什么Ecto不支持order_by: f.cost1 + f.cost2,但您的fragment语法不正确。这是正确的语法:

(from f in Foo,
 where: f.bar >= ^bar,
 order_by: fragment("? + ?", f.cost1, f.cost2),
 limit: 1) |> Repo.one