We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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) ->endUse() ->addAsColumn( 'idOrder', OrderTableMap::COL_ID_SALES_ORDER, )->find();
we expect to have 3 items with virtual column idOrder FE:
idOrder
{ "state_id": 1, "virtual_columns": { "idOrder": 1 } }, { "state_id": 1, "virtual_columns": { "idOrder": 2 } }, { "state_id": 1, "virtual_columns": { "idOrder": 3 } }
But propel map it next way:
{ "state_id": 1, "virtual_columns": { "idOrder": 3 } }, { "state_id": 1, "virtual_columns": { "idOrder": 3 } }, { "state_id": 1, "virtual_columns": { "idOrder": 3 } }
Looks like virtualColumns is mapped by primary key
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
we expect to have 3 items with virtual column
idOrder
FE:
But propel map it next way:
Looks like virtualColumns is mapped by primary key
The text was updated successfully, but these errors were encountered: