GQI Ad hoc – Get multiple parameters at once
21st November 2025
Hi Sofian, Something you could try is fetching the data of multiple elements in parallel, using Parallel.Foreach. Something like this (pseudocode); IEnumerable<IDmsElement> elements; var result = new ConcurrentDictionary<>(); Parallel.ForEach(elements, element …