In the below example would the queryable #q
be evaluated a second time?
local(max = 10, m = 5)
local(q = with n in 1 to 10 select #n+#m)
#q // 6, 7, 8, 9, 10, 11, 12, 13, 14, 15
if(true) => {
#q // is it invoke here like the above?
}
I suspect not, but if that's the case is it #q->asString that invokes the query?