Hi,
i am doing simple operations. Editing gallery textinput fields and when i change value there it adds new value to _supplyTemp temprary collection.
then i want iterate through this collection and update bulk records on azure sql.
i use below code, but no one record are updated. what is wrong there?
ForAll(
_supplyTemp;
Patch(
'[dbo].[Tiekimas]';
LookUp('[dbo].[Tiekimas]';
Id = _supplyTemp[@Id];
{
Id: Id;
UzsakymoId: _orderId;
Rusiavimas: Rusiavimas;
TiekimoKategorijosId: TiekimoKategorijosId;
Aprasymas: Aprasymas;
Matas: Matas;
Kiekis: Kiekis;
Kaina: Kaina;
Viso: Viso
}
)));;