尝试做这样的事情:
(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"不存在。
如何使此查询有效?
答案 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