Get all persons in a group

Is it possible to get all persons beloning to a group from dataservice?

Litium 8.6

Use this:

using (var query = _dataService.CreateQuery<Person>())
{
return query.Filter(x => x.ContainsInGroup(systemId)).ToSystemIdList();
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.