2 مستودعات
High-level query languages that operate on entities and objects rather than relational tables.
Distinct from Query Languages: Distinct from general Query Languages: specifically focuses on the abstraction of records into object-oriented entities.
Explore 2 awesome GitHub repositories matching data & databases · Object-Oriented. 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 a dedicated object-oriented query language (DQL) and programmatic builder for retrieving entity-based data.
Doctrine Collections is a PHP library that provides object-oriented abstractions for managing and manipulating groups of objects with array-like functionality. It wraps native PHP arrays in an object-oriented interface, enabling cleaner data manipulation through methods for filtering, mapping, and iteration. The library supports callback-driven transformation, applying a callback to every element and returning a new collection with the transformed values. It also enables criteria expression querying, allowing selection of matching elements by applying a criteria object with comparison express
Wraps native PHP arrays in an object-oriented interface for cleaner data manipulation.