Intro to Object Relational Mapping (ORM)

Leave a comment

Object-Relational Mapping, or ORM, is a way of allowing you to access data in your database in the form of objects in your code. It is essentially a piece of code that sits alongside your code, and from there you can access database objects such as tables in the form of code objects. As it says, you can essentially break it down to mapping of objects to a relational database.

ORMs save a lot of effort by removing the need for developers to write their own code to handle the mapping of their objects to database objects. While removing the need to write SQL code in many cases, developers will want to ensure their ORM code is still performant.

There are several popular ORM libraries out there, including Hibernate, Active Record, SQLAlchemy, and Entity Framework. Which one you use depends on your technology, preference and features.

Within ORMs, there are also “micro ORMs”, which are lightweight ORMs that perform the basic tasks without additional features. The benefits of using a micro ORM are speed and simplicity. Examples of micro ORMs include Dapper.

Check out future posts on using these ORMs.

THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
 

I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.

IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.

THANK YOU, AND LET'S KEEP LEARNING TOGETHER.

CARL

https://www.youtube.com/carldesouza

 

ABOUT CARL DE SOUZA

Carl de Souza is a developer and architect focusing on Microsoft Dynamics 365, Power BI, Azure, and AI.

carldesouza.comLinkedIn Twitter | YouTube

 

Leave a Reply

Your email address will not be published. Required fields are marked *