Profile Manager – GetProfileInstancesWithFilter: retrieving multiple instances by name
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”));