Software:Dapper ORM
From HandWiki
Short description: Object-relational database software
Stable release | 2.0.35[1]
/ April 5, 2020 |
---|---|
Written in | C# |
Operating system | Cross-platform |
Platform | .NET 4.6.1 and .NET Standard 2.0[2] |
Type | Object–relational mapping |
License | Apache License 2.0[3] or MIT License |
Website | github |
Dapper is an object–relational mapping (ORM) product for the Microsoft .NET platform: it provides a framework for mapping an object-oriented domain model to a traditional relational database. Its purpose is to relieve the developer from a significant portion of relational data persistence-related programming tasks. Dapper is free as open source software that is distributed under dual license, either the Apache License 2.0 or the MIT License.
Feature summary
The Dapper team advertises the following features:[4]
- Speedy and high performance
- Choice of static/dynamic object binding
- Easy handling of SQL query
- Multiple query support
- Support and easy handling of stored procedures
See also
- List of object–relational mapping software
- .NET Persistence API (NPA)
References
- ↑ "Releases · DapperLib/Dapper". https://github.com/DapperLib/Dapper/releases.
- ↑ "Dapper - a simple object mapper for .Net". 2 November 2021. https://github.com/DapperLib/Dapper/blob/master/Dapper/Dapper.csproj.
- ↑ "Dapper - a simple object mapper for .Net". 2 November 2021. https://github.com/DapperLib/Dapper/blob/master/License.txt.
- ↑ "Releases · DapperLib/Dapper". https://github.com/DapperLib/Dapper.
External links
- Dapper Homepage
- NuGet Dapper package
- Dapper Tutorial
- Learn Dapper
- Sam Saffron Blog: How I learned to stop worrying and write my own ORM
Original source: https://en.wikipedia.org/wiki/Dapper ORM.
Read more |