Propel2 icon indicating copy to clipboard operation
Propel2 copied to clipboard

Propel2 is an open-source high-performance Object-Relational Mapping (ORM) for modern PHP

Results 164 Propel2 issues
Sort by recently updated
recently updated
newest added

Hello, we are lately facing this error in different K8S environments serving a PHP API that use Propel ORM: ``` "Unable to execute statement [SELECT settings.id, settings.setting_value FROM settings WHERE...

With propel beta version when I pass critetia in Update query it throws error : Propel\Runtime\ActiveQuery\ModelCriteria::basePreUpdate(): Argument 1 ($values) must be of type array, Propel\Runtime\ActiveQuery\Criteria given

For example: We have entity_state and entity_order one state with id 1 and 3 orders with this state. orders with ids 1, 2, 3 Pseudo code: ``` StateQuery::create() ->useOrderQuery() ->filterByIdOrder_In($salesOrderItemIds)...

Apologies in advance if this is hard to follow. This is with the latest version, `dev-master 011aaa7`. My schema is using 3 primary keys on an `isCrossRef` table. In this...

Post-2.0.0

Suppose we have a User to Role m:m relationship via a cross-reference table `user_to_role`. It would be useful to be able to write: ```php $users = UserQuery::create()->with('Role')->find(); ``` and only...

Post-2.0.0

Quick Question: How does this needs to be rewritten so that it works after Updating to Alpha12 or later? ``` function PDO() { return $this->serviceContainer->getConnection()->getWrappedConnection(); } ``` I'm somtimes accessing...

When generating classes for a schema with more than two foreign keys, not all methods are created. This can be reproduced with the example from the ["More than two foreign...

Post-2.0.0

(Translated by Google) Hello I have already created and loaded **for all the tables**, a behavior very similar to the example in: **timestampable**. There, I override the preInsert and preUpdate...

The command database:reverse is not generating several objects inside my postgres database, atm I found out that views ,enums columns and materialized_views are not being generated on my schema.xml. Is...

As soon as #41 is closed, the ModelQuery generator should be refactored to allow for a strong optimization: bypass most of the runtime logic behing `addUsingAlias()` to directly instantiate a...

Feature
Generator