ORM's Benefits
1)ORMs make domain model implementation easier. The domain model is an object model that enables your business logic’s behaviour and data. The fundamental benefit of adopting ORMs is that they allow you to concentrate on real-world business principles rather than database structure or SQL semantics.
2)ORMs help to decrease the quantity of code. As a result, risks from generating repeated SQL statements for standard CRUD (Create Read Update Delete) processes and escaping user input to prevent vulnerabilities such as SQL injections are reduced.
3)ORMs need the use of little or no SQL. This is useful for those who are unfamiliar with SQL yet need to deal with a database.
Prisma is classified into three types, the most common of which are:
1)Prisma Client 2) Prisma Migrate 3) Prisma Studio
