awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to impetus-opensource/kundera

Open-source alternatives to Kundera

30 open-source projects similar to impetus-opensource/kundera, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Kundera alternative.

  • greenrobot/greendaoالصورة الرمزية لـ greenrobot

    greenrobot/greenDAO

    12,590عرض على GitHub↗

    greenDAO is an object-relational mapping library for Android that maps Java objects to SQLite databases. It provides infrastructure for high-performance data persistence by translating data objects into database records and vice versa. The library implements a type-safe query builder for retrieving records across multiple entities using joins and relationship chaining. It also includes a security layer that provides full-disk encryption for the SQLite database to prevent unauthorized access to stored information. The system utilizes compile-time code generation to create mapping classes, avo

    Java
    عرض على GitHub↗12,590
  • ahoo-wang/smartsqlالصورة الرمزية لـ Ahoo-Wang

    Ahoo-Wang/SmartSql

    1,129عرض على GitHub↗

    SmartSql = MyBatis in C# .NET Core+ Cache(Memory | Redis) R/W Splitting PropertyChangedTrack +Dynamic Repository InvokeSync Diagnostics

    C#
    عرض على GitHub↗1,129
  • go-pg/pgالصورة الرمزية لـ go-pg

    go-pg/pg

    5,785عرض على GitHub↗

    pg is a PostgreSQL object-relational mapper (ORM) for Go that maps Go structs to database tables and provides a fluent query builder for constructing SQL statements programmatically. At its core, it automatically generates CREATE TABLE statements from Go struct definitions using struct tags and naming conventions, and builds queries through method chaining with placeholder-based parameter binding to prevent SQL injection. The library distinguishes itself through relation-aware join generation that automatically constructs JOIN clauses for has-one, has-many, many-to-many, and polymorphic assoc

    Go
    عرض على GitHub↗5,785
  • aspnet/entityframeworkالصورة الرمزية لـ aspnet

    aspnet/EntityFramework

    14,690عرض على GitHub↗

    EntityFramework is a .NET object-relational mapper that translates application objects into database tables and rows. It functions as a query engine that converts high-level expressions into optimized SQL commands for data retrieval. The project provides a mechanism for monitoring modifications to loaded objects to synchronize application state with the database. It also includes a system for synchronizing database structures with data models using versioned migration scripts. The framework supports multi-backend database integration through a plugin system, allowing a single application to

    C#
    عرض على GitHub↗14,690

بحث بالذكاء الاصطناعي

استكشف المزيد من المستودعات الرائعة

صف ما تحتاجه بلغة بسيطة — وسيقوم الذكاء الاصطناعي بترتيب آلاف المشاريع مفتوحة المصدر المنسقة حسب الصلة.

Find more with AI search
  • astaxie/beegoA

    astaxie/beego

    0عرض على GitHub↗
    عرض على GitHub↗0
  • borisdj/efcore.bulkextensionsالصورة الرمزية لـ borisdj

    borisdj/EFCore.BulkExtensions

    3,996عرض على GitHub↗

    EFCore.BulkExtensions is a library for executing high-performance batch insert, update, and delete operations within the Entity Framework Core ecosystem. It functions as a database batch processing toolkit and a wrapper for native SQL Bulk Copy to enable faster data ingestion and synchronization across multiple database providers. The library provides specialized capabilities for relational data synchronization, allowing users to align database tables with local entity lists through bulk upserts and conditional synchronization. It also supports relational data graph insertions, which enable t

    C#batchbulkcopy
    عرض على GitHub↗3,996
  • brettwooldridge/hikaricpالصورة الرمزية لـ brettwooldridge

    brettwooldridge/HikariCP

    21,120عرض على GitHub↗

    HikariCP is a high-concurrency JDBC connection pooling library for Java applications. It provides a reusable set of database connections to reduce the overhead of creating new connections for every request, enabling low-latency database access for applications handling large volumes of simultaneous requests. The project utilizes lock-free connection pooling and non-blocking data structures to ensure high performance. It includes specialized optimizations such as bytecode-optimized statement caching on the driver side to reduce SQL parsing overhead and proxy-based connection wrapping to track

    Javaconnection-poolhigh-performancejava
    عرض على GitHub↗21,120
  • collaboratingplatypus/petapocoالصورة الرمزية لـ CollaboratingPlatypus

    CollaboratingPlatypus/PetaPoco

    2,139عرض على GitHub↗

    Official PetaPoco, A tiny ORM-ish thing for your POCO's

    C#dotnetorm
    عرض على GitHub↗2,139
  • coocood/qbsC

    coocood/qbs

    0عرض على GitHub↗
    عرض على GitHub↗0
  • facebook/entF

    facebook/ent

    0عرض على GitHub↗
    عرض على GitHub↗0
  • fs02/grimoireF

    Fs02/grimoire

    0عرض على GitHub↗
    عرض على GitHub↗0
  • giorgi/entityframework.exceptionsالصورة الرمزية لـ Giorgi

    Giorgi/EntityFramework.Exceptions

    1,724عرض على GitHub↗

    Strongly typed exceptions for Entity Framework Core. Supports SQLServer, PostgreSQL, SQLite, Oracle and MySql.

    C#database-exceptionsdotnet-coreentity-framework
    عرض على GitHub↗1,724
  • go-gorm/gormالصورة الرمزية لـ go-gorm

    go-gorm/gorm

    39,798عرض على 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

    Gogogolanggorm
    عرض على GitHub↗39,798
  • go-gorp/gorpالصورة الرمزية لـ go-gorp

    go-gorp/gorp

    3,751عرض على GitHub↗

    Gorp is a lightweight object-relational mapper for Go that binds structs to relational database tables. It functions as a relational data mapper and SQL dialect abstraction layer, automating the translation between application data and relational rows. The project provides a translation layer that generates vendor-specific SQL for PostgreSQL, MySQL, SQLite, Oracle, and SQL Server. It distinguishes itself by implementing optimistic locking via version columns to prevent concurrent update conflicts and providing a database schema generator to create tables and indexes from object definitions.

    Go
    عرض على GitHub↗3,751
  • albrow/zoomA

    albrow/zoom

    0عرض على GitHub↗
    عرض على GitHub↗0
  • go-reform/reformالصورة الرمزية لـ go-reform

    go-reform/reform

    1,457عرض على GitHub↗

    A better ORM for Go, based on non-empty interfaces and code generation.

    Gogogolanghacktoberfest
    عرض على GitHub↗1,457
  • go-rel/relG

    go-rel/rel

    0عرض على GitHub↗
    عرض على GitHub↗0
  • gobuffalo/popالصورة الرمزية لـ gobuffalo

    gobuffalo/pop

    1,511عرض على GitHub↗

    A Tasty Treat For All Your Database Needs

    Gocockroachdbdatabasegobuffalo
    عرض على GitHub↗1,511
  • gosuri/go-storeG

    gosuri/go-store

    0عرض على GitHub↗
    عرض على GitHub↗0
  • abrahambotros/loreA

    abrahambotros/lore

    0عرض على GitHub↗
    عرض على GitHub↗0
  • henkmollema/dapper-fluentmapالصورة الرمزية لـ henkmollema

    henkmollema/Dapper-FluentMap

    442عرض على GitHub↗

    Provides a simple API to fluently map POCO properties to database columns when using Dapper.

    C#c-sharpdapperpoco-properties
    عرض على GitHub↗442
  • henkmollema/dommelالصورة الرمزية لـ henkmollema

    henkmollema/Dommel

    686عرض على GitHub↗

    CRUD operations with Dapper made simple.

    C#cruddapperdommel
    عرض على GitHub↗686
  • hibernate/hibernate-ormالصورة الرمزية لـ hibernate

    hibernate/hibernate-orm

    6,447عرض على 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

    Java
    عرض على GitHub↗6,447
  • huandu/go-sqlbuilderالصورة الرمزية لـ huandu

    huandu/go-sqlbuilder

    1,711عرض على GitHub↗

    A flexible and powerful SQL string builder library plus a zero-config ORM.

    Godatabasegohiveql
    عرض على GitHub↗1,711
  • javalite/activejdbcJ

    javalite/activejdbc

    0عرض على GitHub↗
    عرض على GitHub↗0
  • jdbi/jdbiالصورة الرمزية لـ jdbi

    jdbi/jdbi

    2,124عرض على GitHub↗

    The Jdbi library provides convenient, idiomatic access to relational databases in Java and other JVM technologies such as Kotlin, Clojure or Scala.

    Javadatabasehacktoberfestjava
    عرض على GitHub↗2,124
  • jirfag/go-querysetJ

    jirfag/go-queryset

    0عرض على GitHub↗
    عرض على GitHub↗0
  • jooq/jooqالصورة الرمزية لـ jOOQ

    jOOQ/jOOQ

    6,666عرض على GitHub↗

    jOOQ is a type-safe SQL query builder for Java that generates code from live database schemas, enabling compile-time validation of SQL syntax and data types. Its core identity is built around a fluent DSL that mirrors SQL structure, a code generator that maps tables, views, and routines to Java objects, and a multi-dialect engine that translates the same DSL into vendor-specific SQL for over 30 databases. The project also includes a SQL parser and transformer for refactoring or dialect conversion, reactive stream integration for non-blocking query execution, and a JDBC proxy diagnostics tool f

    Javacode-generatordatabasedb2
    عرض على GitHub↗6,666
  • jschoedt/go-firestormJ

    jschoedt/go-firestorm

    0عرض على GitHub↗
    عرض على GitHub↗0
  • 2881099/freesqlالصورة الرمزية لـ 2881099

    2881099/FreeSql

    0عرض على GitHub↗

    .NET aot orm, VB.NET/C# orm, Mysql/PostgreSQL/SqlServer/Oracle orm, Sqlite/Firebird/Clickhouse/DuckDB orm, 达梦/金仓/虚谷/翰高/高斯 orm, 神通 orm, 南大通用 orm, 国产 orm, TDengine orm, QuestDB orm, MsAccess orm.

    C#
    عرض على GitHub↗0