If I have a list a resource guids that I want to retrieve, what's the best way to retrieve them in one go?
What kind of filter can I use in the resourcemanagerhelper?
Hi Tim, The most efficient would be to retrieve them in one single request (or the least amount possible). You could use the 'RetrieveBigOrFilter' tools method that is available in the SLNetTypes DLL. This is the same method that recommended for getting DOM instances as well and is mentioned on this docs page: https://docs.dataminer.services/user-guide/Advanced_Modules/DOM/DOM_best_practices.html#try-to-limit-the-number-of-crud-calls
You'll just need to adjust the example on that DOM page a bit to make it work for resources. It should look something like this:
This method will build OR filters and get all resources from the ResourceManager whilst ensuring that these filters do not get too large.