Dapper ORM

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Fredrikc (talk | contribs) at 08:26, 28 January 2020 (Added some references, I cannot find that Dapper is dual licensed anywhere though...). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Dapper
Stable release
2.0.30[1] / September 27, 2019 (2019-09-27)
Repository
Written inC#
Operating systemCross-platform
Platform.NET 4.6.1 and .NET Standard 2.0[2]
TypeObject-relational mapping
LicenseApache License 2.0[3] or MIT License
Websitegithub.com/StackExchange/Dapper

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 following are the key features of Dapper:

  • Speedy and high performance
  • Fewer lines of code
  • Object mapper
  • Choice of static/dynamic object binding
  • Easy handling of SQL query
  • Multiple query support
  • Support and easy handling of stored procedures
  • Operating directly on IDbConnection interface
  • Bulk data insert functionality

See also

References

External links