Hi Community,
I'm wondering if there is a way in .NET to get all users in a certain group. The DNN version in use is 7.0.5.
At the moment I just help myself with a quick and dirty LINQ statement ala
Dim UsrsInRole = From usr in UserController.GetUsers(PortalId) Where usr.IsInRole("ROLENAME") Select usr