DEV Community

Discussion on: A Take on Empowering ActiveRecord

Collapse
 
yoelblum profile image
Yoel

I have to say this is really quite unreadable
Post
|> join(:inner, [p], a in Author, on: p.author_id == a.id)
|> where([p, a], p.likes > a.age)

flexibility aside a main point of the ORM is to be more readable than SQL!

Collapse
 
brunvez profile image
Bruno Vezoli

It's a fair point, I guess some of this might be simplified I just wanted a quick example of Ecto's power 😅