awesome-repositories.com
Blog
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
·

Librerías ORM

Clasificación actualizada el 1 jul 2026

For an ORM library for relational data mapping, the strongest matches are sequelize/sequelize (Sequelize is a full-featured ORM for Node), coleifer/peewee (Peewee is a full-featured Python ORM that maps database) and typeorm/typeorm (TypeORM is a comprehensive object-relational mapper for TypeScript and). seaql/sea-orm and mikro-orm/mikro-orm round out the shortlist. Each is ranked by relevance to your query, popularity and recent activity.

Compara las mejores librerías ORM para mapeo de datos relacionales. Explora repositorios de GitHub seleccionados y clasificados por actividad para encontrar la que mejor se adapte a ti.

Librerías ORM

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • sequelize/sequelizeAvatar de sequelize

    sequelize/sequelize

    30,349Ver en GitHub↗

    Sequelize is an object-relational mapping library that provides a unified interface for managing relational data through code. By implementing the Active Record pattern, it maps database tables to application objects, allowing developers to perform standard create, read, update, and delete operations using high-level method calls. The library abstracts complex database interactions by translating these calls into optimized, engine-specific SQL statements, ensuring consistent behavior across different database systems. The project distinguishes itself through a comprehensive suite of tools for

    Sequelize is a full-featured ORM for Node.js that maps relational database schemas to JavaScript objects, supporting multiple database dialects, a query builder, model definitions with relationships, schema migrations, and lazy/eager loading — exactly the tool this search seeks.

    TypeScriptEager LoadingQuery BuildersSchema Migration Tools
    Ver en GitHub↗30,349
  • coleifer/peeweeAvatar de coleifer

    coleifer/peewee

    11,971Ver en GitHub↗

    Peewee is a SQL object-relational mapper and query builder that provides an object-oriented interface for mapping application classes to relational database tables. It functions as a relational database toolkit for managing schemas, executing migrations, and handling complex table relationships. The project distinguishes itself by providing an asyncio database driver for non-blocking database operations, ensuring event loop responsiveness. It also supports semi-structured data storage, allowing the storage and querying of flexible JSON documents within traditional relational database systems.

    Peewee is a full-featured Python ORM that maps database tables to classes, provides a query builder, handles relationships and migrations, and supports lazy/eager loading, directly matching the request for an Object-Relational Mapping library.

    PythonFluent Query APIsLazy Loading PatternsRelation Loading Strategies
    Ver en GitHub↗11,971
  • typeorm/typeormAvatar de typeorm

    typeorm/typeorm

    36,540Ver en GitHub↗

    TypeORM is an object-relational mapper for TypeScript and JavaScript that bridges the gap between object-oriented application code and relational database tables. It provides a comprehensive data persistence layer that allows developers to define database entities using class decorators or configuration objects, enabling seamless interaction with data through object-oriented patterns. The project distinguishes itself through a flexible architecture that supports both the data mapper and repository patterns, alongside a fluent query builder that translates high-level method calls into platform

    TypeORM is a comprehensive object-relational mapper for TypeScript and JavaScript that supports multiple database engines, a fluent query builder, model definition with decorators, relationship management, schema migrations, and lazy/eager loading — exactly the kind of full-featured ORM this search is after.

    TypeScriptColumn MappingsEager LoadingLazy Loading Patterns
    Ver en GitHub↗36,540
  • seaql/sea-ormAvatar de SeaQL

    SeaQL/sea-orm

    9,410Ver en GitHub↗

    Sea-ORM is an asynchronous SQL object-relational mapper and database toolkit for mapping relational tables to strongly typed objects. It provides a relational database mapper for performing CRUD operations across MySQL, PostgreSQL, and SQLite, and includes a programmatic dynamic query builder for constructing complex SQL statements. The project distinguishes itself by providing a GraphQL schema generator that transforms database entities into typed schemas with built-in pagination and filters. It also features a dedicated database migration tool for defining and applying versioned schema chan

    Sea-ORM is a Rust-native asynchronous ORM that maps relational tables to strongly typed objects, supports MySQL, PostgreSQL, and SQLite, and includes a programmatic query builder and a dedicated schema migration tool — matching your search for an ORM library with broad database support and model management.

    RustEager LoadingEager LoadingFluent Query Builders
    Ver en GitHub↗9,410
  • mikro-orm/mikro-ormAvatar de mikro-orm

    mikro-orm/mikro-orm

    9,085Ver en GitHub↗

    Mikro-ORM is a TypeScript-based object-relational mapping system that provides a unified persistence layer for Node.js applications. It translates TypeScript entities into relational or document-based database schemas, supporting a variety of engines including PostgreSQL, MySQL, MariaDB, MS SQL Server, SQLite, and MongoDB. The project implements the data mapper pattern to decouple in-memory domain models from the database persistence layer. It utilizes a unit of work pattern to track entity changes in memory and commit them in a single coordinated database transaction. The library covers com

    Mikro-ORM is a full-featured TypeScript ORM that supports multiple relational (and document) databases, uses a data-mapper pattern with unit of work, and provides query building, entity definitions with decorators, relationship management, schema migrations, and lazy/eager loading—directly matching the requested ORM library requirements.

    TypeScriptFluent Query BuildersMetadata MappingSchema Migrations
    Ver en GitHub↗9,085
  • drizzle-team/drizzle-ormAvatar de drizzle-team

    drizzle-team/drizzle-orm

    34,835Ver en GitHub↗

    Drizzle ORM is a TypeScript-native database toolkit providing type-safe SQL query building, schema management, and automated migrations across PostgreSQL, MySQL, SQLite, and SingleStore.

    Drizzle ORM is a TypeScript-native ORM that provides type-safe SQL query building, schema definition, relationship management, and automated migrations across multiple databases (PostgreSQL, MySQL, SQLite, etc.), making it an excellent fit for your search.

    TypeScriptQuery BuildersDatabase MigrationsSQL Query Builders
    Ver en GitHub↗34,835
  • go-xorm/xormAvatar de go-xorm

    go-xorm/xorm

    6,628Ver en GitHub↗

    xorm is a relational mapper and object-relational mapping tool for Go. It translates Go structures into SQL queries and maps database rows back into native objects, providing a multi-dialect database driver that supports MySQL, PostgreSQL, SQLite, Oracle, SQL Server, and TiDB. The project features a read-write splitting manager that routes modification requests to a primary database and read requests to replicas. It includes a database schema synchronizer to automatically align table structures and indexes with application data models, as well as a fluent SQL query builder for constructing co

    go-xorm/xorm is a full-featured Go ORM that maps structs to relational tables, supports multiple databases (MySQL, PostgreSQL, SQLite, etc.), includes a query builder, schema synchronization, and caching controls, making it a comprehensive fit for this search.

    GoColumn MappingsFluent Query BuildersFluent Query Construction
    Ver en GitHub↗6,628
  • mybatis-flex/mybatis-flexAvatar de mybatis-flex

    mybatis-flex/mybatis-flex

    2,554Ver en GitHub↗

    MyBatis-Flex is an object-relational mapping framework for Java that extends MyBatis with a fluent API and automated CRUD operations. It provides a data access suite featuring an automatic CRUD data mapper, a type-safe SQL query builder, and a row-based query engine for manipulating records without predefined entity classes. The framework includes a multi-dialect SQL translator that converts generated syntax across different database engines, such as MySQL, PostgreSQL, and Oracle. It further distinguishes itself by offering annotation-free entity mapping using runtime reflection and naming co

    MyBatis-Flex is a Java ORM framework with multi-database support, a fluent query builder, and entity mapping via reflection, making it a solid fit for mapping relational schemas to objects, though it lacks explicit relationship management and schema migration features.

    JavaFluent Query BuildersFluent Query ConstructionDatabase Dialect Adapters
    Ver en GitHub↗2,554
  • stephenafamo/bobAvatar de stephenafamo

    stephenafamo/bob

    1,739Ver en GitHub↗

    This project is a database toolkit for Go that provides schema-to-object mapping, fluent query construction, and automated code generation. It functions as a framework for type-safe database access, enabling developers to interact with relational databases by generating models and interfaces directly from existing database schemas. The toolkit distinguishes itself through a workflow that parses hand-written SQL files to generate type-safe functions, allowing for the integration of custom SQL while maintaining consistent result mapping. It supports modular customization through a plugin-based

    Bob is a Go ORM that generates type-safe models and query builders from your database schema, supporting MySQL, Postgres, and SQLite with a fluent query interface—covering the core ORM needs you're looking for, though it lacks built-in schema migration and explicit lazy/eager loading controls.

    GoFluent Query BuildersFluent Query ConstructionORM Relationship Querying
    Ver en GitHub↗1,739
  • go-gorm/gormAvatar de go-gorm

    go-gorm/gorm

    39,798Ver en GitHub↗

    GORM is a developer-focused object-relational mapping library for Go that provides a comprehensive data persistence framework. It serves as a database access layer, allowing developers to map application structures to database tables and perform CRUD operations using a fluent, type-safe query builder instead of writing raw SQL. The library distinguishes itself through its association-aware persistence, which automatically tracks and synchronizes complex entity relationships during database operations. It utilizes a driver-agnostic interface to maintain consistent behavior across various stora

    GORM is a mature Go ORM that maps structs to database tables with a fluent query builder, relationship management, schema migrations, and lazy/eager loading, covering every feature this search asks for.

    GoQuery BuildersObject-Relational Mapping Associations
    Ver en GitHub↗39,798
  • hibernate/hibernate-ormAvatar de hibernate

    hibernate/hibernate-orm

    6,447Ver en GitHub↗

    Hibernate ORM is a Java object-relational mapper and a full implementation of the Jakarta Persistence API. It serves as a SQL database abstraction layer that translates Java object models into relational database schemas to manage data persistence and lifecycles. The framework distinguishes itself with a multi-tenant data isolation framework for separating customer data within a single database instance. It also features a database schema generator that automatically produces and updates relational structures based on entity mappings. The system covers broad capability areas including transa

    Hibernate ORM is a fully featured Java object-relational mapper implementing the Jakarta Persistence API, and it natively supports multiple databases, annotation-driven model definitions, relationship management, query building via HQL/Criteria, and lazy/eager loading — making it a flagship ORM library that directly meets every listed requirement.

    JavaEntity Mapping MetadataLazy Loading Patterns
    Ver en GitHub↗6,447
  • 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

    SQLAlchemy is a comprehensive Python ORM and SQL toolkit that supports multiple databases, a query builder, declarative model definitions with annotations, relationship management, and lazy/eager loading—exactly matching the core ORM requirements.

    PythonObject-Relational Mapping AssociationsRelation Loading StrategiesSQL Query Builders
    Ver en GitHub↗11,612
  • doctrine/ormAvatar de doctrine

    doctrine/orm

    10,172Ver en GitHub↗

    Doctrine ORM is a PHP object-relational mapper that connects application objects to relational database tables. It uses the data mapper and identity map patterns to decouple the in-memory object model from the database schema, allowing developers to manage data persistence without writing manual SQL. The project features a dedicated object-oriented query language and programmatic builder for retrieving data based on entities rather than tables. It implements a unit-of-work system to track object changes during a request and synchronize them via atomic transactions. The capability surface inc

    Doctrine ORM is a full-featured PHP object-relational mapper that provides a query builder, annotation-based entity mapping, relationship management, lazy loading, and works with multiple databases via its DBAL, making it a strong fit for your ORM search.

    PHPColumn MappingsEager LoadingEntity Mapping Metadata
    Ver en GitHub↗10,172
  • dotnet/efcoreAvatar de dotnet

    dotnet/efcore

    14,587Ver en GitHub↗

    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

    Entity Framework Core is a mature, full-featured ORM that maps relational databases to .NET objects, with built-in support for multiple databases, a LINQ-based query builder, model annotations, relationship management, schema migrations, and lazy/eager loading—exactly the kind of tool this search is after.

    C#Column MappingsMetadata MappingSchema Migration Tools
    Ver en GitHub↗14,587
  • linq2db/linq2dbAvatar de linq2db

    linq2db/linq2db

    3,239Ver en GitHub↗

    linq2db is a type-safe object-relational mapper that translates LINQ expressions into optimized SQL queries for multiple database providers. It functions as a database mapper that links classes to tables and includes a SQL query builder and a command-line schema tool for generating data classes from existing databases. The project provides high-performance bulk data processing for inserting and loading large volumes of records via batch or binary copy methods. It also supports advanced SQL operations, including window functions, common table expressions for recursive hierarchical querying, an

    linq2db is a mature, type-safe .NET ORM that maps classes to database tables using LINQ, supports a wide range of databases, and provides query building, schema generation, and relationship management — exactly the kind of ORM library this search is after.

    C#SQL Query BuildersSQL Dialect Adapters
    Ver en GitHub↗3,239
  • prisma/prismaAvatar de prisma

    prisma/prisma

    46,366Ver en GitHub↗

    Prisma is a database toolkit that provides a unified access layer for interacting with relational and document databases. It centers on a declarative schema modeling approach, where developers define their data structures in a human-readable language. This schema serves as the single source of truth, from which the toolkit automatically generates type-safe database clients that provide compile-time validation and editor autocomplete for all data operations. The project distinguishes itself through a high-performance, Rust-based query engine that handles query planning and connection pooling o

    Prisma is a full-featured ORM that generates type-safe database clients from a declarative schema, supporting multiple relational databases (PostgreSQL, MySQL, SQLite, SQL Server) with migrations, a query builder, relationship management, and efficient loading strategies, making it a comprehensive match for this search.

    TypeScriptSchema Migration Tools
    Ver en GitHub↗46,366
  • tortoise/tortoise-ormAvatar de tortoise

    tortoise/tortoise-orm

    5,582Ver en GitHub↗

    Tortoise ORM is an asynchronous object-relational mapper for Python that mirrors Django's model and queryset API while running on asyncio. It defines database tables as Python classes with typed fields and supports foreign key, many-to-many, and one-to-one relations, providing a chainable query API for filtering, annotating, grouping, and prefetching related objects without blocking the event loop. The ORM includes a built-in migration engine that detects model changes, generates migration files, and applies or reverts schema changes through a command-line tool. It connects to PostgreSQL, MyS

    Tortoise ORM is an async ORM for Python that mirrors Django’s API and supports multiple databases, a query builder, model definitions, relationships, schema migrations, and lazy/eager loading—covering every feature on your list.

    PythonMulti-Database SupportSchema Migrations
    Ver en GitHub↗5,582
  • elixir-ecto/ectoAvatar de elixir-ecto

    elixir-ecto/ecto

    6,471Ver en GitHub↗

    Ecto is an Elixir database toolkit that maps database rows to Elixir structs and validates data changes through changesets before persistence. It provides a language-integrated query syntax for composing database queries, building them incrementally and securely with compile-time expansion into safe SQL. The toolkit connects to multiple database backends including PostgreSQL, MySQL, MSSQL, SQLite3, ClickHouse, and ETS through a pluggable adapter interface. It supports eager and lazy preloading of associated records to eliminate N+1 query problems, and can store nested data structures as embed

    Ecto is Elixir's flagship ORM—it maps database rows to Elixir structs, provides a secure query builder, supports multiple backends (PostgreSQL, MySQL, SQLite, etc.), manages relationships, offers preloading controls, and includes schema migrations, making it a comprehensive fit for this search.

    ElixirMulti-Database Support
    Ver en GitHub↗6,471
  • diesel-rs/dieselAvatar de diesel-rs

    diesel-rs/diesel

    14,021Ver en GitHub↗

    This project is a type-safe database toolkit and object-relational mapper designed to enforce structural consistency between database schemas and application code. By leveraging compile-time validation, it ensures that SQL queries and data structures remain synchronized, preventing common errors before the application executes. It provides a comprehensive framework for relational data modeling, allowing developers to define table associations and map database results directly into strongly-typed language objects. The library distinguishes itself through its focus on compile-time safety and au

    Diesel is a type-safe object-relational mapper that enforces structural consistency between database schemas and Rust code, supporting multiple databases, a query builder, model definitions with annotations, relationships, and schema migrations—exactly the features your ORM search requires.

    RustQuery Builders
    Ver en GitHub↗14,021
  • stephencelis/sqlite.swiftAvatar de stephencelis

    stephencelis/SQLite.swift

    10,167Ver en GitHub↗

    SQLite.swift is a type-safe Swift wrapper and object-relational mapping layer that provides a bridge for interacting with SQLite databases. It functions as a database driver that allows for embedded database management and local data persistence within Swift applications. The project distinguishes itself through a type-safe expression builder that verifies SQL statement syntax and intent at compile time. It includes specialized support for high-performance text matching via full-text search integration and provides mechanisms for securing sensitive data through database encryption. The libra

    SQLite.swift is a type-safe Swift ORM layer for SQLite, providing object mapping and a compile-time query builder, though it is limited to SQLite rather than supporting multiple database backends as listed.

    SwiftFluent Query BuildersSchema MigrationsDatabase Migrations
    Ver en GitHub↗10,167
  • 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

    MyBatis is a mature Java ORM persistence framework that maps database records to objects via SQL and annotations, supports multiple databases, offers a query builder interface, manages relationships, and enables lazy/eager loading—directly fitting the search for a full-featured ORM library.

    JavaObject-Relational MappingSQL Persistence FrameworksDatabase Query Interfaces
    Ver en GitHub↗20,385
  • ebean-orm/ebeanAvatar de ebean-orm

    ebean-orm/ebean

    1,523Ver en GitHub↗

    Ebean is a Java object-relational mapping framework designed to simplify database persistence through automated query generation, schema migration, and transaction management. It uses metadata-driven mapping and bytecode enhancement to bridge the gap between application objects and relational database tables, providing a persistent layer that handles complex data interactions while maintaining consistency across unit-of-work boundaries. The framework distinguishes itself through its focus on developer productivity and performance optimization. It provides type-safe query builders that generat

    Ebean is a mature Java ORM that maps relational databases to objects with support for multiple databases, a query builder, annotation-based models, relationships, migrations, and lazy/eager loading—exactly matching the requested ORM library.

    JavaObject-Relational MappingObject-Relational Mapping FrameworksAnnotation-Driven Mappings
    Ver en GitHub↗1,523
  • uptrace/bunAvatar de uptrace

    uptrace/bun

    4,867Ver en GitHub↗

    Bun is a type-safe object relational mapper for Go that prioritizes SQL-first query construction and result mapping. It functions as a programmable SQL query builder, a database connection manager, and a tool for mapping database tables to Go structs. The project distinguishes itself through a multi-dialect SQL support system, allowing a single codebase to interact with different database engines via a consistent interface. It includes a built-in database observability tool for query interception, distributed tracing, and logging, as well as a schema migration tool for versioning structural c

    Bun is a type-safe ORM for Go that supports multiple databases, a query builder, struct-based model mapping, and schema migrations, making it a solid fit for this search even if its SQL-first approach may be more hands-on than fully automated ORMs.

    GoFluent Query BuildersSQL Query BuildersSQL Dialect Adapters
    Ver en GitHub↗4,867
  • 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

    Dapper is a lightweight micro-ORM for .NET that maps raw SQL results to strongly-typed objects, fitting the ORM category even though it lacks a full query builder, schema migration, and built-in relationship management.

    C#Column MappingsSQL Query Builders
    Ver en GitHub↗18,331
  • fastapi/sqlmodelAvatar de fastapi

    fastapi/sqlmodel

    18,137Ver en GitHub↗

    SQLModel is a type-safe object-relational mapping library for Python that integrates database schema definitions with data validation logic. By combining these two roles into a single class, it allows developers to manage relational data structures and enforce data integrity for web APIs simultaneously. The framework is built to support asynchronous database operations, enabling high-performance applications to execute queries and transactions without blocking the main execution thread. The library distinguishes itself by leveraging Python type hints to provide IDE autocompletion and compile-

    SQLModel is a Python object-relational mapping library that uses SQLAlchemy under the hood to map relational schemas to typed Python classes with relationships, query building, and multiple database support, though it is tailored for FastAPI integration and lacks built-in schema migration tools, which matches your search for an ORM library.

    PythonORM Relationship Querying
    Ver en GitHub↗18,137
  • simolus3/driftAvatar de simolus3

    simolus3/drift

    3,231Ver en GitHub↗

    Drift is a type-safe SQL persistence library and relational mapper that provides a structured way to map database tables to classes and execute SQL queries with build-time validation. It functions as a type-safe query builder and a wrapper for SQLite and PostgreSQL, eliminating manual result set parsing by binding query outputs to native objects. The project distinguishes itself through a build-time code generation system that produces type-safe APIs and validates raw SQL statements against database versions before execution. It features reactive query streaming, which transforms SQL queries

    Drift is a type-safe relational mapper for Dart/Flutter that maps database tables to classes with build-time validation, supports SQLite and PostgreSQL, and provides a query builder and relationship management, fitting the ORM library search.

    DartFluent Query BuildersSQL Dialect Adapters
    Ver en GitHub↗3,231
  • cakephp/cakephpAvatar de cakephp

    cakephp/cakephp

    8,797Ver en GitHub↗

    CakePHP is a PHP web framework designed for the rapid development of full-featured web applications. It utilizes a model-view-controller architecture to separate business logic, data models, and user interfaces. The framework includes a built-in object-relational mapper that allows for the retrieval and storage of relational data without writing raw SQL queries. It employs a convention-over-configuration approach to reduce boilerplate code by assuming standard naming schemes for files and database tables. The project provides tools for implementing web forms with integrated validation and pr

    CakePHP is a full-featured PHP web framework that includes a powerful built-in object-relational mapper, so it can serve as an ORM tool for mapping database schemas to PHP objects, though you will also get the rest of the framework.

    PHPPHP Application FrameworksWeb Application DevelopmentModel-View-Controller Frameworks
    Ver en GitHub↗8,797
  • fnc12/sqlite_ormAvatar de fnc12

    fnc12/sqlite_orm

    2,670Ver en GitHub↗

    This project is a header-only C++ library that provides an object-relational mapping layer for SQLite databases. It enables developers to map native class structures directly to database tables, facilitating type-safe data persistence and retrieval without the need for raw query strings. The library distinguishes itself through the use of template-based metaprogramming, which allows for compile-time schema mapping and query construction. By utilizing a fluent interface, it translates method calls into optimized database statements, while its support for prepared statement caching minimizes pa

    fnc12/sqlite_orm is a lightweight header-only ORM library for C++ focused specifically on SQLite, so it delivers the core object-relational mapping you want, but it does not support multiple databases or include schema migrations, relationship management, or lazy/eager loading out of the box.

    C++Fluent Query Builders
    Ver en GitHub↗2,670
  • nreco/dataAvatar de nreco

    nreco/data

    194Ver en GitHub↗

    Fast DB-independent DAL for .NET Core: abstract queries, SQL commands builder, schema-less data access, POCO mapping (micro-ORM).

    nreco/data is a micro-ORM for .NET Core that maps POCO objects to SQL and provides a query builder, fitting the ORM category but lacking built-in schema migrations and relationship management.

    C#Object Relational Mapping
    Ver en GitHub↗194
Compara los 10 mejores de un vistazo
RepositorioEstrellasLenguajeLicenciaÚltimo push
sequelize/sequelize30.3KTypeScriptMIT13 jun 2026
coleifer/peewee12KPythonMIT16 jun 2026
typeorm/typeorm36.5KTypeScriptMIT15 jun 2026
seaql/sea-orm9.4KRustapache-2.021 feb 2026
mikro-orm/mikro-orm9.1KTypeScriptMIT17 jun 2026
drizzle-team/drizzle-orm34.8KTypeScriptApache-2.015 jun 2026
go-xorm/xorm6.6KGoBSD-3-Clause3 abr 2020
mybatis-flex/mybatis-flex2.6KJavaapache-2.03 feb 2026
stephenafamo/bob1.7KGoMIT22 jun 2026
go-gorm/gorm39.8KGoMIT11 may 2026

Related searches

  • an open source ORM for relational databases
  • un sistema de gestión de bases de datos relacionales
  • un ORM para aplicaciones .NET
  • an object relational mapping library for Java
  • an object relational mapper for PHP
  • an open source library for interactive maps
  • an object relational mapping library for Kotlin
  • un ORM active-record para PHP