Hello, I have a loop that runs through the rows of a table in which I generate a field with a random value - I use this instruction: new Random().Next(100000000,999999999).ToString.
The problem is that I have to include a delay of one second because otherwise the random is replicated in an average of ten rows until it changes.
With the delay it works fine but the processing time is more than an hour.