You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently do some parallel queries and those use some general expressions.
We can't simply reuse them, we need to clone them.
One workaround is to use lodash.deepClone, but i want to get rid of that library.
So for now i always need to recreate the partial expressionen for every query.
I tested a bit and if I create an expression, I can reuse it to create multiple other queries without any issues.
The example you provided, well it doesn't work because there's no get_viewXml method on the CamlBuilder object, but if I use ToString(), it works fine.
Can you provide a different example or improve this one so that it can be used to reproduce the problem? 🙏
We currently do some parallel queries and those use some general expressions.
We can't simply reuse them, we need to clone them.
One workaround is to use
lodash.deepClone
, but i want to get rid of that library.So for now i always need to recreate the partial expressionen for every query.
sample
The text was updated successfully, but these errors were encountered: