mirror of
https://github.com/doctrine/KeyValueStore.git
synced 2026-03-24 08:42:12 +01:00
[PR #85] [CLOSED] Find all entities #110
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/doctrine/KeyValueStore/pull/85
Author: @south634
Created: 5/30/2017
Status: ❌ Closed
Base:
master← Head:find-all-entities📝 Commits (8)
4951789Check for item after get attempt instead of before869a8e3Added test1f34f52Merge pull request #1 from ConsumerTrack/fix-fatal-error-on-missing-table-key0174f75Adding QueryBuilder support for dynamo7e8dc70Adding Orx, fixing parenthesis97239b5Adding support for embeddable entities8624f2dAdding support for loading9d37b8cAllow for find all Entities📊 Changes
19 files changed (+1439 additions, -22 deletions)
View changed files
📝
lib/Doctrine/KeyValueStore/EntityManager.php(+15 -0)📝
lib/Doctrine/KeyValueStore/Mapping/AnnotationDriver.php(+18 -3)➕
lib/Doctrine/KeyValueStore/Mapping/Annotations/Embeddable.php(+29 -0)➕
lib/Doctrine/KeyValueStore/Mapping/Annotations/Embedded.php(+33 -0)📝
lib/Doctrine/KeyValueStore/Mapping/ClassMetadata.php(+3 -1)📝
lib/Doctrine/KeyValueStore/Mapping/ClassMetadataFactory.php(+1 -1)➕
lib/Doctrine/KeyValueStore/Query/Expr.php(+281 -0)➕
lib/Doctrine/KeyValueStore/Query/Expr/Andx.php(+63 -0)➕
lib/Doctrine/KeyValueStore/Query/Expr/Base.php(+124 -0)➕
lib/Doctrine/KeyValueStore/Query/Expr/Comparison.php(+100 -0)➕
lib/Doctrine/KeyValueStore/Query/Expr/Composite.php(+71 -0)➕
lib/Doctrine/KeyValueStore/Query/Expr/Func.php(+78 -0)➕
lib/Doctrine/KeyValueStore/Query/Expr/Orx.php(+63 -0)➕
lib/Doctrine/KeyValueStore/Query/Parameter.php(+94 -0)➕
lib/Doctrine/KeyValueStore/Query/QueryBuilder.php(+287 -0)➕
lib/Doctrine/KeyValueStore/Query/QueryBuilderStorage.php(+41 -0)📝
lib/Doctrine/KeyValueStore/Storage/DynamoDbStorage.php(+91 -3)📝
lib/Doctrine/KeyValueStore/UnitOfWork.php(+44 -13)📝
tests/Doctrine/Tests/KeyValueStore/Storage/DynamoDbTest.php(+3 -1)📄 Description
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.