ここで理解できない小さな問題に直面しています。このコードのチャンクを使用する:
IEntity myEntity = controller.entityFactory.createEntityInstance(MyEntity.class)
myEntity.straightSetProperty(IEntity.ID, "anId")
myEntity.setReferenceProperty(someReference)
「UOW の使用方法が正しくありません」というエラーが表示される
不適切なセッション使用法 以前にセッションでマージされていないエンティティ ()[MyEntity] を変更しています。backendController.merge(...) メソッドを使用して、最初にエンティティをセッションにマージする必要があります。変更されるプロパティは [referenceProperty] です。
でも、回線を切り替えるときは大丈夫です
IEntity myEntity = controller.entityFactory.createEntityInstance(MyEntity.class)
myEntity.setReferenceProperty(someReference)
myEntity.straightSetProperty(IEntity.ID, "anId")
なぜ私がこの問題に直面しているのか分かりますか?