sglyon
I am an experienced dev, but pretty new to elixir. I keep finding myself going back and forth between a couple options for how to construct a changeset that will create a new record with one or more associations.
The following small ecto schema module presents the two options
defmodule MyProject.Quizzes.QuizQuestion do
use Ecto.Schema
import Ecto.Changeset
schema "quiz_questions" do
belongs_to :quiz, MyProject.Quizzes.Quiz
belongs_to :question, MyProject.Questions.Question
timestamps()
end
@doc false
def changeset(quiz_question, attrs) do
quiz_question
|> cast(attrs, [:quiz_id, :question_id])
|> validate_required([:quiz_id, :question_id])
|> foreign_key_constraint(:quiz_id)
|> foreign_key_constraint(:question_id)
end
def create(%MyProject.Quizzes.Quiz{} = quiz, %MyProject.Questions.Question{} = question) do
%__MODULE__{}
|> change()
|> put_assoc(:quiz, quiz)
|> put_assoc(:question, question)
|> foreign_key_constraint(:quiz_id)
|> foreign_key_constraint(:question_id)
end
end
In this example I have three models: Quiz, Question, and a join table QuizQuestions that combines them. I have two functions in the module:
change: this takes in anattrsmap, casts the foreign keyid, requires them, and adds foreign key constraintscreate: takes in instances of the related schemas (Question and Quiz), usesput_assocto build the association, then adds foreign key constraints
Both of these approaches let me create the new QuizQuestion struct that is Repo.insertable, but I still have some questions.
- Is one approach more idiomatic and why?
- Should I prefer one case to the other?
- What are the tradeoffs?
- Is it bad practice to use structs defined in other core modules as arguments to functions (like I did in
createwhen I acceptQuizandQuestionstructs)?
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
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’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
al2o3cr
I’m going to give you the less-than-entirely-helpful “it depends”
Both approaches can be useful, depending on exactly where
quizandquestionare coming from:casts them could be useful to make sure they’re converted to the ID type etcput_assocapproach is fine/quiz/1234/questionswhere theQuizto associate is known but thequestion_idto use is from the userIn the “neither from the user” case, you might even shorten things further if you don’t want / need to display foreign key errors as changeset errors:
This can be passed to
Repo.insertdirectly, no changeset required.Two general things to think about:
For instance on the second point, a field that a user could leave blank might have
validate_requiredon it so they could be told they’re making a mistake. OTOH a field that the program fills in that shouldn’t ever be blank might just have a bareNOT NULLin the DB so failing to fill it in crashes / fails.lucavenir
I hope I don’t startle anyone asking this 2 years later.
But in reality
1234comes as a binary, doesn’t it?So, related to this, given that we need to cast
"1234"to1234, how would one code the changeset function, here?garrison
The implication here is that if you are on
/quiz/1234then you have already done aRepo.get(Quiz, id)and you have a%Quiz{id: 1234}to work with.Personally, in that situation I often do something like this:
But it would be just as valid to work with associations or use
put_change()for thequiz_id. The point is that you don’t need to castquiz_idbecause it comes right from a real%Quiz{}and it’s already an integer.lucavenir
This means that if I have:
/resource/:resource_id/child/:child_id/feature/:idI need to perform at least two
gets, internally, to determineresourceandchild- did I get this right?I may go off topic, but isn’t this suboptimal?
Is it a premature optimization concern?
Thank you for the great answer btw.