From b64d360ebc85d6b9c372c9859921e90c9a70318a Mon Sep 17 00:00:00 2001 From: Fred Vasquez Date: Wed, 4 Jan 2023 11:29:38 -0300 Subject: [PATCH] Add dapper docs (#3162) * Update 101-dapper.md Adding introduction and useful links. * Update content/roadmaps/116-aspnet-core/content/104-orm/101-dapper.md Co-authored-by: Kamran Ahmed --- .../116-aspnet-core/content/104-orm/101-dapper.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/116-aspnet-core/content/104-orm/101-dapper.md b/content/roadmaps/116-aspnet-core/content/104-orm/101-dapper.md index 3310c7359..612657397 100644 --- a/content/roadmaps/116-aspnet-core/content/104-orm/101-dapper.md +++ b/content/roadmaps/116-aspnet-core/content/104-orm/101-dapper.md @@ -1 +1,10 @@ -# Dapper \ No newline at end of file +# Dapper + +Dapper is a lightweight object-relational mapper (ORM) for the .NET framework. It is designed to provide fast and simple access to data stored in a database, by mapping the data to objects in the application. + +Dapper helps you to write efficient and concise code for interacting with databases, without the need for a full-featured ORM like Entity Framework. It provides a set of extension methods for the IDbConnection interface, which you can use to execute SQL queries and map the results to strongly-typed objects. + +To learn more about Dapper, you can visit the following links: + +- [The official Dapper website](https://github.com/StackExchange/Dapper) +- [The Dapper Documentation](https://dapper-tutorial.net)