The material provided is for informational purposes only, and should not be relied on in making any purchasing or investment decision. The information is not a commitment, promise or legal obligation to deliver any material, code, or functionality. The development, release, and timing of any features or functionality described for our products remains at our sole discretion. © 2026 Cloud Software Group, Inc. All rights reserved
Thanks for the reply!
I can achieve what I wanted by following your suggestions and that seems more efficient!
In many scenarios it may be both easier and more efficient to create a JavaScript array using
Array.from(enumerables)and then use the native JavaScript array functions. Using Linq would require one extra marshalling per item in the enumeration from the managed side to JavaScript.Is there a specific use case that would benefit from having Linq support that you cannot achieve with a JavaScript array?