2 dépôts
Retrieving only a subset of defined fields for an entity to optimize memory usage.
Distinct from Partial Document Retrieval: Focuses on selecting specific columns of a relational entity rather than partial document retrieval in NoSQL.
Explore 2 awesome GitHub repositories matching data & databases · Partial Entity Loading. Refine with filters or upvote what's useful.
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
Provides the ability to retrieve only specific fields of an object to reduce memory consumption.
FreeSql is a .NET object-relational mapper and data access layer that translates object-oriented code into SQL for multiple relational database providers. It functions as a fluent SQL query builder and database schema synchronizer, allowing developers to align database table and index structures with entity class definitions. The framework is specifically optimized for .NET Native AOT to ensure reduced memory footprints and faster startup times. It includes a database traffic manager to distribute load through read-write splitting, dynamic table sharding, and tenant-based data isolation. Bro
Updates only modified properties of a database entity by comparing current values against an original state snapshot.