-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
PHPORM-255 Enable disabling the id
to _id
field rename in embedded documents
#3332
base: 5.x
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for doing this PR, really happy to see any progress regarding this issue!
@@ -123,6 +125,8 @@ class Builder extends BaseBuilder | |||
*/ | |||
public $options = []; | |||
|
|||
private ?bool $renameEmbeddedIdField; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this property is only set on the connection, should it be defined here on the builder?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are builder instances created in many places, you don't always have access to them to change the setting on each specific instance.
If we used a static variable, it would apply to every connection.
So I think that the connection is the good level for this setting.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, which is why I'm confused that this property is also defined here on the builder. I guess I meant, "this shouldn't be defined here on the builder, because it's never set on the builder".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, right. I forgot to remove it after trying to define it in the builder. Which did not work well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be great if we could add an option in the config file to disable this behaviour.
{ | ||
if (array_key_exists('id', $values)) { | ||
if (array_key_exists('id', $values) && ($root || $this->connection->getRenameEmbeddedIdField())) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would it be easier to check:
if (!$root && !$this->connection->getRenameEmbeddedIdField()) return $values;
at the beginning instead of checking them multiple times in the function?
Fix PHPORM-255
Fix #3184
To disable the automatic conversion of
id
to_id
and storeid
fields in the database for embedded documents, set the connection setting using the new method:Checklist