[PR #381] [MERGED] [DDC-1637] Collection Filtering API #8110

Closed
opened 2026-01-22 15:58:25 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/381
Author: @beberlei
Created: 6/20/2012
Status: Merged
Merged: 7/9/2012
Merged by: @beberlei

Base: masterHead: DDC-1637


📝 Commits (1)

  • b2385e0 [DDC-1637] Implementation of Criteria Collections API for

📊 Changes

11 files changed (+736 additions, -66 deletions)

View changed files

📝 lib/Doctrine/ORM/EntityRepository.php (+39 -1)
📝 lib/Doctrine/ORM/PersistentCollection.php (+62 -5)
📝 lib/Doctrine/ORM/Persisters/BasicEntityPersister.php (+165 -43)
📝 lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php (+12 -7)
📝 lib/Doctrine/ORM/Persisters/SingleTablePersister.php (+23 -6)
lib/Doctrine/ORM/Persisters/SqlExpressionVisitor.php (+102 -0)
lib/Doctrine/ORM/Persisters/SqlValueVisitor.php (+126 -0)
📝 tests/Doctrine/Tests/ORM/Functional/ClassTableInheritanceTest.php (+29 -2)
📝 tests/Doctrine/Tests/ORM/Functional/EntityRepositoryTest.php (+134 -0)
📝 tests/Doctrine/Tests/ORM/Functional/OneToManyBidirectionalAssociationTest.php (+23 -0)
📝 tests/Doctrine/Tests/ORM/Functional/SingleTableInheritanceTest.php (+21 -2)

📄 Description

This Pull Request implements the new Collection Filtering/Criteria API inside the Persisters.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/doctrine/orm/pull/381 **Author:** [@beberlei](https://github.com/beberlei) **Created:** 6/20/2012 **Status:** ✅ Merged **Merged:** 7/9/2012 **Merged by:** [@beberlei](https://github.com/beberlei) **Base:** `master` ← **Head:** `DDC-1637` --- ### 📝 Commits (1) - [`b2385e0`](https://github.com/doctrine/orm/commit/b2385e0afa5e36adcdfbdc8d58e0fc963e45fdc7) [DDC-1637] Implementation of Criteria Collections API for ### 📊 Changes **11 files changed** (+736 additions, -66 deletions) <details> <summary>View changed files</summary> 📝 `lib/Doctrine/ORM/EntityRepository.php` (+39 -1) 📝 `lib/Doctrine/ORM/PersistentCollection.php` (+62 -5) 📝 `lib/Doctrine/ORM/Persisters/BasicEntityPersister.php` (+165 -43) 📝 `lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php` (+12 -7) 📝 `lib/Doctrine/ORM/Persisters/SingleTablePersister.php` (+23 -6) ➕ `lib/Doctrine/ORM/Persisters/SqlExpressionVisitor.php` (+102 -0) ➕ `lib/Doctrine/ORM/Persisters/SqlValueVisitor.php` (+126 -0) 📝 `tests/Doctrine/Tests/ORM/Functional/ClassTableInheritanceTest.php` (+29 -2) 📝 `tests/Doctrine/Tests/ORM/Functional/EntityRepositoryTest.php` (+134 -0) 📝 `tests/Doctrine/Tests/ORM/Functional/OneToManyBidirectionalAssociationTest.php` (+23 -0) 📝 `tests/Doctrine/Tests/ORM/Functional/SingleTableInheritanceTest.php` (+21 -2) </details> ### 📄 Description This Pull Request implements the new Collection Filtering/Criteria API inside the Persisters. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-22 15:58:25 +01:00
admin closed this issue 2026-01-22 15:58:26 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#8110