-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
ASP.NET Core 9 Essentials
By :
In each chapter, we have learned about different aspects involving ASP.NET Core 9 and how this platform provides a large number of resources for the development of the most diverse types of applications. Each application has a purpose, which is to process data that generates information for users. However, at some point, your application will end up interacting with a data persistence model.
Data persistence occurs in several ways, but in general, it is the serialization of information allocated in memory to the disk, which can be in the form of files, and commonly takes place using a data persistence platform, such as a Database Management System (DBMS) or non-relational data. We will discuss these two persistence models in more depth soon.
Most applications use a persistence model based on databases such as SQL Server, Oracle, and MySQL. Each DBMS has models of administration, typing, and organization of resources; however, they share the same purpose...