awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
StackExchange avatar

StackExchange/Dapper

0
View on GitHub↗
18,320 estrellas·3,670 forks·C#·6 vistaswww.learndapper.com↗

Dapper

Dapper is a high-performance micro-ORM and SQL object mapper for .NET. It functions as an ADO.NET extension library that adds data mapping capabilities directly to database connections, allowing SQL query results to be transformed into typed objects.

The project prioritizes execution speed and low memory overhead by using intermediate language generation to map database columns to object properties. It further optimizes performance through the use of concurrent caching for mapping functions and literal value injection to improve database execution plans.

The library covers a broad range of data access capabilities, including synchronous and asynchronous SQL command execution, stored procedure support, and multi-mapping for relational data. It includes tools for managing dynamic parameters, processing multiple result sets, and streaming large datasets row-by-row to minimize memory consumption.

Features

  • SQL Query Execution - Executes synchronous and asynchronous SQL statements, including single operations and bulk updates with parameter collections.
  • Micro-ORMs - Functions as a high-performance micro-ORM for the .NET ecosystem.
  • ADO.NET Extensions - Extends the IDbConnection interface with methods that simplify SQL command and stored procedure execution.
  • .NET Database Integration - Connects .NET applications to SQL databases to execute queries and retrieve data using typed objects.
  • Parameter Collections - Transforms anonymous objects into database parameter collections by iterating over properties at runtime.
  • Object-Relational Mapping - Provides a lightweight object-relational mapping layer for common create, read, update, and delete operations.
  • Dynamic Mapping Engines - Generates Intermediate Language code at runtime to achieve high-performance mapping between database columns and object properties.
  • Dynamic Parameter Injection - Extracts parameters from objects or constructs them dynamically to support adaptive query building.
  • Result Converters - Transforms raw database query results into typed objects or dynamic lists.
  • Object Mappers - Automates the translation of database result sets into strongly-typed C# application objects.
  • Extension Methods - Provides database mapping capabilities as extensions to the standard IDbConnection interface.
  • Concurrent Caches - Uses concurrent caches to store generated mapping functions and avoid redundant compilation of query logic.
  • Multi-Object Row Deserialization - Deserializes a single database row into several distinct objects to handle joined data and associations.
  • Memory-Optimized Data Retrieval - Fetches large datasets from a database with minimal memory overhead using row streaming and optimized mapping.
  • Result Parsing Optimizations - Prioritizes execution speed and low memory overhead using runtime IL generation for result parsing.
  • Result Streaming - Supports row-by-row processing of query results to minimize memory consumption when handling large datasets.
  • Collection-Based Filtering - Automatically parameterizes queries using collections to filter results based on multiple provided values.
  • Multi-Result Set Parsers - Supports executing a single query that returns multiple data grids and processing each set independently.
  • Row-Based Result Streaming - Reads database results one record at a time to minimize memory usage when handling large datasets.
  • Stored Procedures - Executes database stored procedures and maps the returned data sets into typed objects.
  • Multi-Object Row Splitting - Splits a single database row into multiple distinct objects based on specified column split points.
  • Object Relational Mapping - High-performance micro-ORM for mapping database results to objects.
  • Persistence Frameworks - Lightweight object mapper for .NET.

Historial de estrellas

Gráfico del historial de estrellas de stackexchange/dapperGráfico del historial de estrellas de stackexchange/dapper

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Alternativas open-source a Dapper

Proyectos open-source similares, clasificados según cuántas características comparten con Dapper.
  • dapperlib/dapperAvatar de DapperLib

    DapperLib/Dapper

    18,331Ver en GitHub↗

    Dapper is a lightweight object-relational mapper for .NET that functions as a high-performance data access library. It operates by extending standard database connection interfaces, allowing developers to execute raw SQL queries while automating the mapping of database results to strongly-typed objects. The library distinguishes itself through its use of runtime code generation, which creates high-performance instructions to map database rows to object properties with minimal overhead. It provides flexible data retrieval options, supporting both memory-buffered loading for speed and row-by-ro

    C#ado-netdappersql
    Ver en GitHub↗18,331
  • mybatis/mybatis-3Avatar de mybatis

    mybatis/mybatis-3

    20,385Ver en GitHub↗

    MyBatis is a Java persistence framework that functions as a database query mapper and object-relational mapping tool. It decouples SQL statements from application code, allowing developers to manage database interactions by mapping Java objects to relational database records. The framework provides a centralized approach to SQL query management, enabling the use of either XML configuration files or annotations to define persistence logic. It automates the transformation of database result sets into structured objects, which eliminates the need for manual data conversion and reduces repetitive

    Javajavamybatissql
    Ver en GitHub↗20,385
  • felixge/node-mysqlAvatar de felixge

    felixge/node-mysql

    18,621Ver en GitHub↗

    This project is a pure JavaScript database driver for Node.js that implements the native MySQL binary protocol. It serves as a comprehensive connector for managing persistent network links to MySQL servers, enabling applications to execute queries, manage transactions, and handle complex data operations without requiring external middleware. The driver distinguishes itself through its integrated support for connection pooling and distributed database routing. It maintains managed sets of reusable network sockets to optimize resource usage under high request volumes, while simultaneously provi

    JavaScript
    Ver en GitHub↗18,621
  • sqlalchemy/sqlalchemyAvatar de sqlalchemy

    sqlalchemy/sqlalchemy

    11,612Ver en GitHub↗

    SQLAlchemy is a comprehensive Python SQL toolkit and object-relational mapper that provides a full suite of tools for interacting with relational databases. It serves as a foundational layer for database connectivity, offering both a high-level object-oriented interface for data persistence and a programmatic SQL expression language for constructing complex, dialect-agnostic queries. The project distinguishes itself through its sophisticated unit of work persistence, which coordinates atomic transactions and tracks object state changes to minimize redundant database operations. It provides a

    Pythonpythonsqlsqlalchemy
    Ver en GitHub↗11,612
Ver las 30 alternativas a Dapper→

Preguntas frecuentes

¿Qué hace stackexchange/dapper?

Dapper is a high-performance micro-ORM and SQL object mapper for .NET. It functions as an ADO.NET extension library that adds data mapping capabilities directly to database connections, allowing SQL query results to be transformed into typed objects.

¿Cuáles son las características principales de stackexchange/dapper?

Las características principales de stackexchange/dapper son: SQL Query Execution, Micro-ORMs, ADO.NET Extensions, .NET Database Integration, Parameter Collections, Object-Relational Mapping, Dynamic Mapping Engines, Dynamic Parameter Injection.

¿Qué alternativas de código abierto existen para stackexchange/dapper?

Las alternativas de código abierto para stackexchange/dapper incluyen: dapperlib/dapper — Dapper is a lightweight object-relational mapper for .NET that functions as a high-performance data access library. It… mybatis/mybatis-3 — MyBatis is a Java persistence framework that functions as a database query mapper and object-relational mapping tool.… felixge/node-mysql — This project is a pure JavaScript database driver for Node.js that implements the native MySQL binary protocol. It… sqlalchemy/sqlalchemy — SQLAlchemy is a comprehensive Python SQL toolkit and object-relational mapper that provides a full suite of tools for… hibernate/hibernate-orm — Hibernate ORM is a Java object-relational mapper and a full implementation of the Jakarta Persistence API. It serves… go-gorm/gorm — GORM is a developer-focused object-relational mapping library for Go that provides a comprehensive data persistence…