-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Drupal 9 Module Development
By :

In this final section of the chapter, we're going to cover the most common things you will be doing with content and configuration entities. These are the main topics we will discuss going forward:
So, let's hit it.
One of the most common things you will do as a programmer is querying stuff, such as data in the database. The entity API offers a layer that reduces the need to query the database directly. In a later chapter, we will see how we can still do that when things become more complex. For now, since most of our structured data belongs in entities, we will use the entity query system for retrieving entities.
If you remember when we spoke about the entity type handlers, one of them was the storage handler that provides the API for CRUD...