BenNG
Hi Everyone !
I have a question related to preload and using a field from the preload to order_by.
Here are the 3 schemas I’m working on. I’m new in Ecto so I might took bad decision on the model don’t hesitate to correct me ![]()
defmodule ExamenDuCode.Client do
use Ecto.Schema
alias ExamenDuCode.{Seance, Examen}
schema "clients" do
field(:lastname, :string)
field(:firstname, :string)
field(:address, :string)
field(:birthdate, :date)
timestamps()
many_to_many(:seances, Seance, join_through: "clients_seances")
many_to_many(:examens, Examen, join_through: "clients_examens")
end
end
defmodule ExamenDuCode.Seance do
use Ecto.Schema
alias ExamenDuCode.{Serie}
schema "seances" do
field(:date, :date)
many_to_many(:clients, ExamenDuCode.Client, join_through: "clients_seances")
belongs_to(:serie, Serie)
timestamps()
end
end
defmodule ExamenDuCode.ClientSeance do
alias ExamenDuCode.{Client, Seance}
use Ecto.Schema
@primary_key false
schema "clients_seances" do
belongs_to(:client, Client)
belongs_to(:seance, Seance)
field(:nbrError, :integer)
end
end
Here are some information about the problem:
A customer Client wants a driving licence.
He can participate to all the sessions Seance he wants
Customer accumulate errors during the session nbrError
The customer is allowed to participate to the driving licence if he has less or equal to 5 errors during the last 4 sessions.
The hard part I think is to handle the nbrError in the association Schemaclients_seances
I tried this but I have this problem
Repo.all(from cs in ClientSeance, preload: :seance, order_by: cs.seance.date)
** (Ecto.Query.CompileError) `cs.seance().date()` is not a valid query expression
(ecto) expanding macro: Ecto.Query.order_by/3
priv/repo/seeds.exs:176: (file)
(ecto) expanding macro: Ecto.Query.from/2
priv/repo/seeds.exs:176: (file)
(elixir) expanding macro: Kernel.|>/2
priv/repo/seeds.exs:177: (file)
The preload data is not available to be used with the order_by.
Any ideas ?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 3- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
voughtdq
I think you have to use the join syntax to do this since preloads are not bound.
Try seeing if this gives you the desired result:
BenNG
Hi voughtdq,
Thank you for the answer !
I managed to order my
ClientSeanceusing the date field of seance.My next step is to group_by Client.id and sum on cs.nbrError.
Do you know what is the problem here ?
It’s weird because I used cs in the select …
alco
When a query includes
preload: [:seance], Ecto will actually run the main query first, then fetch the association mentioned inpreloadin a separate query. This is why it wasn’t possible to order bycs.seance.datein your original post:seancewasn’t loaded at the time.In your last query, even though you added
join: s in Seance,preload: [:seance]would still run as a separate query after the first one. Ecto logs every SQL statement it sends to the DB with thedebuglevel, I suggest you study those logs to see how Ecto transforms queries into SQL.You probably want to use
preload: [seance: s]instead ofpreload: [:seance]to have Ecto use the joined table to load theseanceassociation instead of performing a second query. As for the error you’re gettinghere’s what it means: If you don’t select the complete
sstruct, Ecto won’t be able to put the preloaded association on it.If you all you need from
sis itsdate, remove thepreload: [:seance]line since you’re already joining on theSeanceschema.