我有下面的代码,它根据过滤器返回所有用户。问题是它只返回 100 个用户,但我知道还有更多。
private List<User> GetUsersFromGraph()
{
if (_graphAPIConnectionDetails == null) ReadParametersFromXML();
if (graphServiceClient == null) graphServiceClient = CreateGraphServiceClient();
var users = graphServiceClient
.Users
.Request()
.Filter(_graphAPIConnectionDetails.UserFilter)
.Select(_graphAPIConnectionDetails.UserAttributes)
.GetAsync()
.Result
.ToList<User>();
return users;
}
该方法仅返回 100 个用户对象。我的 Azure 门户管理员报告应该接近 60,000。
慕尼黑的夜晚无繁华
慕姐8265434
相关分类