wernerlaude

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

Showing Posts 1 to 10

sneako

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

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 a has_many field to your User schema, you can also use Ecto.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

amnu3387

The Ecto guides are really great.
If you’re loading the user from scratch, and it has a has_many relationship you can also use preload. Like

User
|> preload(:meetings)
|> Repo.get(user_id)
wernerlaude

wernerlaude OP

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

narand

The field user_id (i.e. the field for the foreign key) will be automatically added when using belongs_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_key option to belongs_to (see belongs_to/3).

kokolegorille

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

q = from m in Meeting, where: m.user_id == ^current_user.id
Repo.all(q)
narand

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

wernerlaude OP

Thanks.. finally it works..and thanks for the link..

wernerlaude

wernerlaude OP

Yes watched that..and I got the idea.. But still new..

peerreynders

peerreynders

You can if you want to:

field :user_id, :id, primary_key: true

and on legacy databases you sometimes have to.

Ecto.Schema.field/3
Ecto.Migration.table/2
Ecto.Migration.add/3

It still won’t teach you SQL - you’re still on your own for that …

We’re also going assume that you’re comfortable working with relational databases and SQL. You don’t need to be an expert, but you should be familiar with tables, columns, indexes and how to write queries. There are many online tutorials that can walk you through the basics.

Where Next? Top

Trending in Questions Top

RSP87
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
kpanic
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
nseaSeb
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
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 Top

JesseHerrick
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews