Hi All,
I would like to use xtk.session.Write method, but with multiple _key parameters. My goal is to reconcile records by two values @someId and @email at the same time. I know how to use single _key:
var newInput = "<myTable xtkschema='cus:myTable' _operation='insertOrUpdate' _key='@someId' someId='somevalue1' email='email@domain.com' nextField1='next value 1' nextField2 = 'next value 2' />";
xtk.session.Write(newInput);
But what is a proper syntax for two _keys?
Are you able to help me?
Thank you,
Marcin
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
The _key attribute is comma-delimited. Here:
xtk.session.Write("<myTable xtkschema='cus:myTable' _operation='insertOrUpdate' _key='@someId,@email' someId='somevalue1' email='email@domain.com' nextField1='next value 1' nextField2 = 'next value 2' />");
Thanks,
-Jon
Hi,
The _key attribute is comma-delimited. Here:
xtk.session.Write("<myTable xtkschema='cus:myTable' _operation='insertOrUpdate' _key='@someId,@email' someId='somevalue1' email='email@domain.com' nextField1='next value 1' nextField2 = 'next value 2' />");
Thanks,
-Jon
It works, thank you very much!
Views
Replies
Total Likes