2 repositorios
Centralized classes for managing database connections and repository instances.
Distinct from Data Repositories: Distinct from existing candidates: focuses on the architectural pattern of a repository context class for data access, not repository configuration or AI context.
Explore 2 awesome GitHub repositories matching data & databases · Repository Context Managers. Refine with filters or upvote what's useful.
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
Organizes data access through centralized classes that manage database connections and repository instances.
Entity Framework Core is an object-relational mapper that enables developers to interact with database systems using strongly-typed code. It serves as a comprehensive data access framework, providing a unified interface for mapping application objects to relational and non-relational database schemas while managing the lifecycle of data operations through a central context. The project distinguishes itself through a provider-based architecture that decouples core data access logic from specific database engines, allowing for consistent interaction across diverse storage systems. It features a
Controls the creation and disposal of data access instances to ensure they align with specific application scopes or unit-of-work requirements.