gpt4 book ai didi

elixir - 如何执行与 Ecto 等效的 ActiveRecord 查询 current_user.articles?

转载 作者:行者123 更新时间:2023-12-05 00:58:14 25 4
gpt4 key购买 nike

在 Rails AR 中,可以运行这样的查询:

current_user.articles # fetch all articles from current_user
SELECT * from articles where user_id = <user_id>;

有一种与 Ecto 相同的方法吗?

最佳答案

articles = Repo.all(from a in assoc(current_user, :articles))

或将文章预加载到用户中
current_user = Repo.preload(current_user, [:articles])
current_user.articles

关于elixir - 如何执行与 Ecto 等效的 ActiveRecord 查询 current_user.articles?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33292393/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com