I am using forms authentication and need to get a list of users that have a certain role and have a certain value in a certain profile property. The way I am doing this is to call Membership.GetAllUsers and then looping through them and checking the roles and profile. Is there a better way to do this in 1 call so that I don’t have to get all users back and iterate?
Thanks,
Sachin
You may use
GetUsersInRole()method.