A list of profile instance names is provided and the goal is to retrieve all matching profile instance objects from the server.
How should the filter element look like?
Ciprian Moga [SLC] [DevOps Advocate] Selected answer as best 11th September 2020
You have to use the ProfileInstanceExposers for that. var filter = ProfileInstanceExposers.Name.Contains("MyName"); var profileInstance = PmHelper.GetProfileInstancesWithFilter(filter);
You can combine all filters like this:
var filter = ProfileInstanceExposers.Name.Contains("MyName").OR(ProfileInstanceExposers.Name.Contains("MyName"));
Ciprian Moga [SLC] [DevOps Advocate] Selected answer as best 11th September 2020