orm icon indicating copy to clipboard operation
orm copied to clipboard

Doctrine Object Relational Mapper (ORM)

Results 161 orm issues
Sort by recently updated
recently updated
newest added

### Bug Report | Q | A |------------ | ------ | BC Break | no | Version | 2.12.3 #### Summary When initializing a proxy by accessing a non-loaded property,...

### Bug Report | Q | A |------------ | ------ | Version | 2.6.3 #### Summary EntityManager tries to rollback the transaction when exception is thrown during commit operation. The...

Bug

### BC Break Report | Q | A |------------ | ------ | BC Break | yes | Version | 2.19.4 | php | 8.1 | DB | PostgrSQL | Symfony...

There are two ways to join entities and both can be restricted further using the `WITH` keyword: 1. using join assocations. ``` SELECT u, a FROM App\Entity\User u JOIN u.addresses...

Deprecation

### Bug Report | Q | A |------------ | ------ | BC Break | no | Version | 2.17.1 #### Summary I am experiencing an issue with Doctrine ORM's query...

AFAIK, `AbstractHydrator#iterate()` doesn't cleanup anything as long as the iteration doesn't [reach the final row](https://github.com/doctrine/doctrine2/blob/205ee72e3360175f687d01c72024c4854dff8363/lib/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php#L166). So if I break the loop on the way like following: ```php foreach ($query->iterate() as...

### Bug Report | Q | A |------------ | ------ | BC Break | don't know | Version | 3.1.1 #### Summary The `AUTOGENERATE_FILE_NOT_EXISTS_OR_CHANGED` setting for `setAutoGenerateProxyClasses` does not update...

### Bug Report | Q | A |------------ | ------ | BC Break | no | Version | 3.1.2 #### Summary Cloning a lazy-loaded entity or populating it after setting...

Hello, I'm using: doctrine/common v2.7.3 I have 2 entities, Dispatch and PackagingContent, both are virtually linked with a field name product_id. There is no relation in entity between them. Inside...

Missing Tests
Bug

When we have two collections with inherited types in one entity, in this example it's `PetStore` containing `Cat` and `Dog` ``` Cat extends Pet Dog extends Pet // Cat and...