wernerlaude
In AR this is so simple
@articles = current_user.articles
How to do in Ecto?
def index(conn, _params) do
current_user = conn.assigns.current_user
meetings = Listings.list_meetings() #works..sure but I only want current_user ones..
Tried all what I could find in goo, but no success!
#meetings = Repo.get_by!(Meeting, user_id: current_user.id) #nope, but anyway ..is this getting all or only one entry?
=> Enumerable not implemented for
meetings = Repo.all(Meeting) |> where(user_id: current_user.id)
=> MeetingController.init/1 is undefined.
some help would be great..thanks
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
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
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
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
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sneako
Repo.all() will run the query you are passing to it, so you will want to compose the full query before passing it in. Your last example is close, try something like
Meeting |> where(user_id: current_user.id) |> Repo.all()narand
The
Repo.get_by!function retrieves a single match and will throw an error if there are multiple results, see (see Ecto.Repo.get_by!).Alternatively to using
Repo.all: if you have added ahas_manyfield to your User schema, you can also useEcto.assoc/2(see Ecto.assoc for examples) to retrieve the meetings.For a more in-depth discussion, you could always check out the Ecto Association Guide.
amnu3387
The Ecto guides are really great.
If you’re loading the user from scratch, and it has a
has_manyrelationship you can also use preload. Likewernerlaude
When I do in schema meetings:
field :user_id, :integer
belongs_to :user, Accounts.User
I get: ** (ArgumentError) field/association :user_id is already set on schema..
So what? Do I have to set a relation in schema or not..This is all so unclear ..
narand
The field
user_id(i.e. the field for the foreign key) will be automatically added when usingbelongs_to, so you should not add it yourself.Should you need to customize the foreign key field name (say when you have two associations to the same schema), you can pass the
foreign_keyoption tobelongs_to(see belongs_to/3).kokolegorille
It is difficult to change from AR to Ecto, it’s quite different.
But You might find a good free resource here
http://pages.plataformatec.com.br/ebook-whats-new-in-ecto-2-0
And this new book on Ecto
Ecto is closer to sql… here is a simple query
narand
You can also find an insightful talk of Darin Wilson on YouTube (kinda a preview to the book you mentioned): Thinking in Ecto
wernerlaude
Thanks.. finally it works..and thanks for the link..
wernerlaude
Yes watched that..and I got the idea.. But still new..
peerreynders
You can if you want to:
and on legacy databases you sometimes have to.
Ecto.Schema.field/3Ecto.Migration.table/2Ecto.Migration.add/3It still won’t teach you SQL - you’re still on your own for that …