Hello,
I have assembly, that update an attribute of Entity.
fragment of code
var entity = new Entity("name", entityId);
entity ["attrName"] = newValue
_service.Update(entity);
And I call this assembly in realtime workflow(not background)
But when I call workflow, I don't see any result, only after Refresh page.
Why ?
Thanks.