If you like your code to run fast, you probably know about Micro ORMs. They are simple and one of their main goals is to be the fastest execution of your SQL sentences in your data repository. For some Micro ORMs you need to write your own SQL sentences and this is the case of the most popular Micro ORM Dapper.
This library abstracts the generation of SQL for CRUD operations based on each C# POCO class metadata. The SQL Generator is a generic component that builds all CRUD sentences for a POCO class based on its definition, with the possibility to override the SQL generator and the way it builds each sentence.
The library is designed to help with common, simple queries so you don't have to write repetitive SQL by hand. It does not try to cover every possible scenario - for complex queries you should write SQL directly using Dapper.
Read the full documentation at Learn Dapper.
Dapper Plus and Entity Framework Extensions are major sponsors and are proud to contribute to the development of MicroOrm.Dapper.Repositories
Inspired by Diego García's Dapper.DataRepositories.
All contents of this package are licensed under the MIT license.

