Dapper ORM

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 125.23.240.198 (talk) at 08:40, 2 September 2016 (→‎Feature summary). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Dapper
Stable release
1.50.1 / July 8, 2016 (2016-07-08)
Repository
Written inC#
Operating systemCross-platform
Platform.NET3.5 or 4.0 and Mono
TypeObject-relational mapping
LicenseApache License 2.0 or MIT License
Websitegithub.com/StackExchange/dapper-dot-net

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:

Speed and fast in performance. Fewer lines of code. Object Mapper. Static Object Binding. Dynamic Object Binding. Easy Handling of SQL Query. Easy Handling of Stored Procedure. Operating directly to IDBConnection class that provides smoothness and running query directly to the database instead of passing data using various objects as we do in EF and ADO.NET. Multiple Query Support. Support for Stored Procedure. Bulk Data insert functionality. Dapper also allows fetching multiple data based on multiple inputs.

See also

References

External links