2692 search results for Doctrine

Go Pro with Doctrine Queries Legacy

You already know how to query with SQL, so learning how to do complex queries with Doctrine should not give you a headache. In this series, we'll learn the language Doctrine speaks (DQL), as well as the query builder ...

10 videos
|
50:57
Symfony 3 Doctrine the Database

With already two courses checked off, you are primed and ready to put Symfony to work! And that's what this course is all about: making things more interesting by talking to the database with Doctrine. Doctrine has a ...

12 videos
|
46:37
Doctrine Symfony the Database

... It's database time! After the first two courses, we are primed and ready to take our app up a level... or 10! This tutorial is all about Doctrine: a powerful ORM that will allow us to talk to a database from inside our ...

23 videos
|
2:22:24
Doctrine the Database in Symfony 4

Two episodes down! Booya! And we are super ready to put our new skills to the test! It's finally time to make up app come alive by using Doctrine to connect to a database. Doctrine is an amazing ORM that works great ...

18 videos
|
1:56:34
Mastering Doctrine Relationships in Symfony 3

In the part 1 of the Doctrine Tutorial we got a sweet setup with Doctrine: entities, queries, migrations and fixtures. But, we left out one big piece: database relations. Once you've mastered these, you'll be ...

10 videos
|
34:47
Go Pro with Doctrine Queries

You already know how to query with SQL, so learning how to do complex queries with Doctrine should not be a pain! In this tutorial, we'll learn about: the language Doctrine speaks (DQL) the QueryBuilder object JOINs ...

16 videos
|
1:26:33
Doctrine Collections ManyToMany Forms other Complex Relations

With the basic of Doctrine relations behind us, it's time to dive deeper and get our hands dirty with some real-world, but complex collections. Honestly, this is the hardest part of Doctrine: so let's get it right ...

28 videos
|
2:24:59
Doctrine Symfony 6 the Database

After the first two courses, we're going to turn the volume to 11! Yup, it's database time! This tutorial is all about Doctrine: a powerful ORM that will allow us to talk to a database from inside our Symfony app. With ...

22 videos
|
2:28:56
Mastering Doctrine Relations

In the part 1 of the Doctrine Tutorial we got some serious work done with Doctrine: creating entity classes, making custom queries, migrations, Docker setup & more! But... we ignored one of the biggest part of Doctrine ...

27 videos
|
2:45:18
Mastering Doctrine Relations in Symfony 4

In the part 1 of the Doctrine Tutorial we created a freakin' awesome setup: with Doctrine: entities, queries, migrations and fixtures. But, we're missing a big, giant, huge, important piece! Database relations! And once ...

19 videos
|
2:14:20
Things you will need to know when Doctrine 3 comes out Denis Brumann

Doctrine ORM is probably the most used database abstraction in PHP. With Doctrine 3 on the horizon it's a perfect time to look at how Doctrine has changed and will change and what this means for you as users. This talk ...

39:34
More about Container the doctrine Service and the Entity Manager

More about Container, the “doctrine” Service and the Entity Manager¶ In our test, we needed Doctrine’s entity manager and to get it, we used Symfony’s container. Remember from the first episode in this series that ...

1:54
Doctrine Listeners on Update

Doctrine Listeners on Update¶ But what if a user updates their password? Hmm, our listener isn’t called on updates, so the encoded password can never be updated. Crap! Add a second tag to services.yml to listen on ...

2:48
Doctrine Event Listeners

Doctrine Event Listeners¶ In episode 2, we created a registration form and manually encoded the user’s plain-text password before persisting it. We even duplicated this logic in our fixtures. Shame! Our goal is to ...

5:59
Doctrine is in your Lifecycle with Callbacks

Doctrine is in your Lifecycle (with Callbacks)¶ Remember when we used StofDoctrineExtensions to set the Event’s slug for us? That magic works by leveraging one of the most powerful features of Doctrine: events ...

2:08
Installing Doctrine

... of Symfony's BFF's: an external library called Doctrine. Doctrine has great integration with Symfony and is crazy powerful. It also has a reputation for being a little bit hard to learn. But, a lot has improved over the ...

4:44
Doctrine Listener Encode the User's Password

In AppBundle, create a new directory called Doctrine and a new class called HashPasswordListener: If this is your first Doctrine listener, welcome! They're pretty friendly. Here's the idea: we'll create a function that ...

4:39
Doctrine DQL

Look, I know you already understand how to do queries in SQL - maybe you dream of JOINs, orders and sub-queries. That's really dorky, but I get it. But when you look at Doctrine, it's totally different - with its DQL ...

4:58
Leveraging the Doctrine Data Provider

Our UserDataProvider is now responsible for loading the collection of users. But we lost pagination and filtering because the normal data provider from Doctrine usually handles that! Let's actually find that class. I'll ...

5:27
Installing Doctrine

... talk to the database? The answer is... no! Because... it doesn't have to! Why? Enter Doctrine: the most powerful library in the PHP world for working with databases. And Symfony and Doctrine work great together: they're ...

6:15