I have two tables:
Person
Rate: personId(1,1 relation to person)
and I do have many Rate objects related to one person, and I need to update the relation of all rates of a person to another one.
so my case will be:
get all rates where personId=firstPerson.objectId
and update relation personId of all rates to secondPerson.objectId
Yes and if you want to check it:
check line 409 in class UserBusiness
Note: personId is rater in my case, but I’ve said personId just to clarify my problem.
AppId: “5FB0EA72-A363-4451-FFA5-A56F031D6600”
column that I want to update is rater in table rate, I want to set relation to person with object id :
“5F2A48AA-222E-43BB-9900-ED0BA6518596” in person table
As I see rater.objectId column has String data type. The name looks incorrect and I have created ticket to prohibit dots in the column name BKNDLSS-22984. I have renamed rater.objectId to raterObjectId.