Doctrine Merge is not working as expected
I am getting the following json data from the client. JSON contains the parent and child details as below -
{
id : 1,
name : "Parent"
children : [
{ id : 1, name : "A" },
{ id : 2, name : "B" }
]
}
I am mapping these json data to Parent and Child Object.
Parent
class Parent{
/** @Id @Column(type="integer",name="order_no") @GeneratedValue * */
protected $id;
/**
* @OneToMany(targetEntity="Child",cascade={"merge"}, mappedBy="parent" )
*/
protected $children;
}
Child
class SalesOrderDetail extends BaseEntity {
/** @Id @Column(type="integer") @GeneratedValue * */
protected $id;
/**
* @ManyToOne(targetEntity="parent")
* @JoinColumn(name="parent_id")
*/
protected $salesOrder;
}
So far so good.
Now the issue is when I am trying to merge the parent
$em->merge($parent)
I am getting the following error. Note : The entire object parent and children are unmanaged object so I am trying to merge. If I just merge parent it works find but getting error if I am trying to save entire content of parent and its children.
Type: DoctrineORMORMInvalidArgumentException Message: Multiple
non-persisted new entities were found through the given association
graph: * A new entity was found through the relationship
'ZiletechDatabaseEntityParent#itemSet' that was not configured to
cascade persist operations for entity:
ZiletechDatabaseEntityChild@0000000052218380000000007058b4a6. To
solve this issue: Either explicitly call EntityManager#persist() on
this unknown entity or configure cascade persist this association in
the mapping for example @ManyToOne(..,cascade={"persist"}). If you
cannot find out which entity causes the problem implement
'ZiletechDatabaseEntityChild#__toString()' to get a clue. * A new
entity was found through the relationship
'ZiletechDatabaseEntityParent#itemSet' that was not configured to
cascade persist operations for entity:
ZiletechDatabaseEntityChild@0000000052218071000000007058b4a6. To
solve this issue: Either explicitly call EntityManager#persist() on
this unknown entity or configure cascade persist this association in
the mapping for example @ManyToOne(..,cascade={"persist"}). If you
cannot find out which entity causes the problem implement
'ZiletechDatabaseEntityChild#__toString()' to get a clue.
php symfony doctrine2
|
show 1 more comment
I am getting the following json data from the client. JSON contains the parent and child details as below -
{
id : 1,
name : "Parent"
children : [
{ id : 1, name : "A" },
{ id : 2, name : "B" }
]
}
I am mapping these json data to Parent and Child Object.
Parent
class Parent{
/** @Id @Column(type="integer",name="order_no") @GeneratedValue * */
protected $id;
/**
* @OneToMany(targetEntity="Child",cascade={"merge"}, mappedBy="parent" )
*/
protected $children;
}
Child
class SalesOrderDetail extends BaseEntity {
/** @Id @Column(type="integer") @GeneratedValue * */
protected $id;
/**
* @ManyToOne(targetEntity="parent")
* @JoinColumn(name="parent_id")
*/
protected $salesOrder;
}
So far so good.
Now the issue is when I am trying to merge the parent
$em->merge($parent)
I am getting the following error. Note : The entire object parent and children are unmanaged object so I am trying to merge. If I just merge parent it works find but getting error if I am trying to save entire content of parent and its children.
Type: DoctrineORMORMInvalidArgumentException Message: Multiple
non-persisted new entities were found through the given association
graph: * A new entity was found through the relationship
'ZiletechDatabaseEntityParent#itemSet' that was not configured to
cascade persist operations for entity:
ZiletechDatabaseEntityChild@0000000052218380000000007058b4a6. To
solve this issue: Either explicitly call EntityManager#persist() on
this unknown entity or configure cascade persist this association in
the mapping for example @ManyToOne(..,cascade={"persist"}). If you
cannot find out which entity causes the problem implement
'ZiletechDatabaseEntityChild#__toString()' to get a clue. * A new
entity was found through the relationship
'ZiletechDatabaseEntityParent#itemSet' that was not configured to
cascade persist operations for entity:
ZiletechDatabaseEntityChild@0000000052218071000000007058b4a6. To
solve this issue: Either explicitly call EntityManager#persist() on
this unknown entity or configure cascade persist this association in
the mapping for example @ManyToOne(..,cascade={"persist"}). If you
cannot find out which entity causes the problem implement
'ZiletechDatabaseEntityChild#__toString()' to get a clue.
php symfony doctrine2
1
DId you actually do what the error suggests? Either$em->persist()
or add@ManyToOne(targetEntity="parent",cascade={"persist"})
?
– Jamie_D
Nov 19 '18 at 12:48
persist
will not help since I want to update the data, not to save new one.
– Sunil Singh
Nov 19 '18 at 13:02
More answers here
– Jamie_D
Nov 19 '18 at 13:10
I have seen that already. I am also doing the persist. Its working for one level but not with the children that is the main issue.
– Sunil Singh
Nov 19 '18 at 13:12
How did you craete your object?
– Iwan Wijaya
Nov 19 '18 at 13:30
|
show 1 more comment
I am getting the following json data from the client. JSON contains the parent and child details as below -
{
id : 1,
name : "Parent"
children : [
{ id : 1, name : "A" },
{ id : 2, name : "B" }
]
}
I am mapping these json data to Parent and Child Object.
Parent
class Parent{
/** @Id @Column(type="integer",name="order_no") @GeneratedValue * */
protected $id;
/**
* @OneToMany(targetEntity="Child",cascade={"merge"}, mappedBy="parent" )
*/
protected $children;
}
Child
class SalesOrderDetail extends BaseEntity {
/** @Id @Column(type="integer") @GeneratedValue * */
protected $id;
/**
* @ManyToOne(targetEntity="parent")
* @JoinColumn(name="parent_id")
*/
protected $salesOrder;
}
So far so good.
Now the issue is when I am trying to merge the parent
$em->merge($parent)
I am getting the following error. Note : The entire object parent and children are unmanaged object so I am trying to merge. If I just merge parent it works find but getting error if I am trying to save entire content of parent and its children.
Type: DoctrineORMORMInvalidArgumentException Message: Multiple
non-persisted new entities were found through the given association
graph: * A new entity was found through the relationship
'ZiletechDatabaseEntityParent#itemSet' that was not configured to
cascade persist operations for entity:
ZiletechDatabaseEntityChild@0000000052218380000000007058b4a6. To
solve this issue: Either explicitly call EntityManager#persist() on
this unknown entity or configure cascade persist this association in
the mapping for example @ManyToOne(..,cascade={"persist"}). If you
cannot find out which entity causes the problem implement
'ZiletechDatabaseEntityChild#__toString()' to get a clue. * A new
entity was found through the relationship
'ZiletechDatabaseEntityParent#itemSet' that was not configured to
cascade persist operations for entity:
ZiletechDatabaseEntityChild@0000000052218071000000007058b4a6. To
solve this issue: Either explicitly call EntityManager#persist() on
this unknown entity or configure cascade persist this association in
the mapping for example @ManyToOne(..,cascade={"persist"}). If you
cannot find out which entity causes the problem implement
'ZiletechDatabaseEntityChild#__toString()' to get a clue.
php symfony doctrine2
I am getting the following json data from the client. JSON contains the parent and child details as below -
{
id : 1,
name : "Parent"
children : [
{ id : 1, name : "A" },
{ id : 2, name : "B" }
]
}
I am mapping these json data to Parent and Child Object.
Parent
class Parent{
/** @Id @Column(type="integer",name="order_no") @GeneratedValue * */
protected $id;
/**
* @OneToMany(targetEntity="Child",cascade={"merge"}, mappedBy="parent" )
*/
protected $children;
}
Child
class SalesOrderDetail extends BaseEntity {
/** @Id @Column(type="integer") @GeneratedValue * */
protected $id;
/**
* @ManyToOne(targetEntity="parent")
* @JoinColumn(name="parent_id")
*/
protected $salesOrder;
}
So far so good.
Now the issue is when I am trying to merge the parent
$em->merge($parent)
I am getting the following error. Note : The entire object parent and children are unmanaged object so I am trying to merge. If I just merge parent it works find but getting error if I am trying to save entire content of parent and its children.
Type: DoctrineORMORMInvalidArgumentException Message: Multiple
non-persisted new entities were found through the given association
graph: * A new entity was found through the relationship
'ZiletechDatabaseEntityParent#itemSet' that was not configured to
cascade persist operations for entity:
ZiletechDatabaseEntityChild@0000000052218380000000007058b4a6. To
solve this issue: Either explicitly call EntityManager#persist() on
this unknown entity or configure cascade persist this association in
the mapping for example @ManyToOne(..,cascade={"persist"}). If you
cannot find out which entity causes the problem implement
'ZiletechDatabaseEntityChild#__toString()' to get a clue. * A new
entity was found through the relationship
'ZiletechDatabaseEntityParent#itemSet' that was not configured to
cascade persist operations for entity:
ZiletechDatabaseEntityChild@0000000052218071000000007058b4a6. To
solve this issue: Either explicitly call EntityManager#persist() on
this unknown entity or configure cascade persist this association in
the mapping for example @ManyToOne(..,cascade={"persist"}). If you
cannot find out which entity causes the problem implement
'ZiletechDatabaseEntityChild#__toString()' to get a clue.
php symfony doctrine2
php symfony doctrine2
asked Nov 19 '18 at 12:28


Sunil Singh
6,1372626
6,1372626
1
DId you actually do what the error suggests? Either$em->persist()
or add@ManyToOne(targetEntity="parent",cascade={"persist"})
?
– Jamie_D
Nov 19 '18 at 12:48
persist
will not help since I want to update the data, not to save new one.
– Sunil Singh
Nov 19 '18 at 13:02
More answers here
– Jamie_D
Nov 19 '18 at 13:10
I have seen that already. I am also doing the persist. Its working for one level but not with the children that is the main issue.
– Sunil Singh
Nov 19 '18 at 13:12
How did you craete your object?
– Iwan Wijaya
Nov 19 '18 at 13:30
|
show 1 more comment
1
DId you actually do what the error suggests? Either$em->persist()
or add@ManyToOne(targetEntity="parent",cascade={"persist"})
?
– Jamie_D
Nov 19 '18 at 12:48
persist
will not help since I want to update the data, not to save new one.
– Sunil Singh
Nov 19 '18 at 13:02
More answers here
– Jamie_D
Nov 19 '18 at 13:10
I have seen that already. I am also doing the persist. Its working for one level but not with the children that is the main issue.
– Sunil Singh
Nov 19 '18 at 13:12
How did you craete your object?
– Iwan Wijaya
Nov 19 '18 at 13:30
1
1
DId you actually do what the error suggests? Either
$em->persist()
or add @ManyToOne(targetEntity="parent",cascade={"persist"})
?– Jamie_D
Nov 19 '18 at 12:48
DId you actually do what the error suggests? Either
$em->persist()
or add @ManyToOne(targetEntity="parent",cascade={"persist"})
?– Jamie_D
Nov 19 '18 at 12:48
persist
will not help since I want to update the data, not to save new one.– Sunil Singh
Nov 19 '18 at 13:02
persist
will not help since I want to update the data, not to save new one.– Sunil Singh
Nov 19 '18 at 13:02
More answers here
– Jamie_D
Nov 19 '18 at 13:10
More answers here
– Jamie_D
Nov 19 '18 at 13:10
I have seen that already. I am also doing the persist. Its working for one level but not with the children that is the main issue.
– Sunil Singh
Nov 19 '18 at 13:12
I have seen that already. I am also doing the persist. Its working for one level but not with the children that is the main issue.
– Sunil Singh
Nov 19 '18 at 13:12
How did you craete your object?
– Iwan Wijaya
Nov 19 '18 at 13:30
How did you craete your object?
– Iwan Wijaya
Nov 19 '18 at 13:30
|
show 1 more comment
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374656%2fdoctrine-merge-is-not-working-as-expected%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53374656%2fdoctrine-merge-is-not-working-as-expected%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
DId you actually do what the error suggests? Either
$em->persist()
or add@ManyToOne(targetEntity="parent",cascade={"persist"})
?– Jamie_D
Nov 19 '18 at 12:48
persist
will not help since I want to update the data, not to save new one.– Sunil Singh
Nov 19 '18 at 13:02
More answers here
– Jamie_D
Nov 19 '18 at 13:10
I have seen that already. I am also doing the persist. Its working for one level but not with the children that is the main issue.
– Sunil Singh
Nov 19 '18 at 13:12
How did you craete your object?
– Iwan Wijaya
Nov 19 '18 at 13:30