2 مستودعات
Utilities that automate the translation of database result sets into strongly-typed application objects.
Distinct from SQL Query Interfaces: Distinct from SQL Query Interfaces: focuses on the mapping of result sets to objects rather than the execution of SQL commands.
Explore 2 awesome GitHub repositories matching data & databases · Object Mappers. Refine with filters or upvote what's useful.
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 d
Automates the translation of database result sets into strongly-typed C# application objects.
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
Automates the translation of database rows into application objects using extension methods on standard database connection interfaces.