thojanssens1
What do you have in your Schema apart from changeset functions?
I’m not sure what is good to keep in the Schema’s apart from changeset. Usually my Schema will have a def changeset/2function and possibly other functions creating/modifying changesets.
What else is good to keep in a Schema? Do you put helpers to build queries? Can I see some examples of some of your Schema?
Thank you!
Marked As Solved
xpg
I have both changeset, build, and query functions within the schema module.
I am, however, trying to move the query functions out into separate modules. When having fairly complex changeset logic as well as functions that operate on the schema-struct itself, I find that the schema modules can grow quite big. Thus I think it makes sense to move the query functions out.
Besides a few simple queries (e.x. fetch all elements belonging to a specific user), more complex queries tend to be more specialized and may even perform joins with other schemas. In those cases it makes more sense to have more specific (and smaller) query modules.
Also Liked
mathieuprog
From the “Programming Ecto” book:
As a general rule, we recommend putting the pure functions that manipulate
queries, changesets, and multis into their associated schema modules.
Also:
Changesets, queries, and multis are pure data structures that
describe impure actions against the database, but these actions don’t take
place until we run them through the functions provided by Repo. This creates
a clear distinction between code that has side effects and code that doesn’t.
It seems that it is advised for the query builders to be in the Schema itself.
Example from the book:
defmodule MusicDB.Music.Album do
use Ecto.Schema
import Ecto.Query
alias MusicDB.Music.{Album, Artist}
schema "albums" do
field :title, :string
belongs_to :artist, Artist
end
def search(string) do
from album in Album,
where: ilike(album.title, ^"%#{string}%")
end
end
Popular in Questions
Other popular topics
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #supervisor
- #advent-of-code
- #elixirconf-us
- #distillery
- #processes
- #forms
- #api
- #metaprogramming
- #security
- #performance









