Hello,
I try to get the index of the elements in a Select statement at the template level, but I can’t.
I’ve tried with the IndexOf() function like this (this works in a foreach instruction) :
<<var [pumpData = Query.…...Select(p => new { pump = p[“Id”], position = p.IndexOf() })]>>...Select((p1, i) => new { pump = p1[“Id”], position = i })]>> How can...