CRUD (Create, Read, Update, Delete)

Basic CRUD functionalities on a persisted object is provided through the EntityService, where Entity is a generic placeholder model that should be customized for your project’s needs. Various different data types are included in the Entity model for demonstration purposes.

stringField: string
intField: int
enumField: enum
stringArrayField: [string]
boolField: boolean

Table of contents