Skip to Main Content
Spotfire Ideas Portal
Status Unlikely to implement
Product Spotfire
Categories Mods
Created by Guest
Created on Jul 11, 2024

add Linq support to Action Mod API

Please add Linq support to Action Mod API to increase productibility when manipulating IEnumerable objects.



  • Attach files
  • Guest
    Reply
    |
    Jul 15, 2024

    Thanks for the reply!

    I can achieve what I wanted by following your suggestions and that seems more efficient!



  • Guest
    Reply
    |
    Jul 12, 2024

    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?