Ecto Modules
Learn about the modules of Ecto.
We'll cover the following...
Modules of Ecto
Ecto’s core functionality is contained in six main modules. In Part I, we’ll look at each of them in detail. Later in this chapter, we’ll dive into Repo
.
Repo
The Repo
module is the heart of Ecto and acts as a kind of proxy for our database. All communication to and from the database goes through Repo
.
Query
The Query
module contains Ecto’s powerful but ...