4
在Rails AR可以運行這樣的疑問:如何執行ActiveRecord的查詢current_user.articles等同於Ecto?
current_user.articles # fetch all articles from current_user
SELECT * from articles where user_id = <user_id>;
有同等的方式與外生做到這一點?
在Rails AR可以運行這樣的疑問:如何執行ActiveRecord的查詢current_user.articles等同於Ecto?
current_user.articles # fetch all articles from current_user
SELECT * from articles where user_id = <user_id>;
有同等的方式與外生做到這一點?
articles = Repo.all(from a in assoc(current_user, :articles))
或預裝物品進入用戶
current_user = Repo.preload(current_user, [:articles])
current_user.articles