我有两个类似的片段:
IGraphServiceUsersCollectionPage users = await graphServiceClient.Users
.Request()
.Select("id")
.Filter("department eq 'Department'")
.GetAsync();
和
IGraphServiceUsersCollectionPage users = await graphServiceClient.Users
.Request()
.Select("id")
.Filter("companyName eq 'CompanyName'")
.GetAsync();
第一个片段正常工作;第二个片段根本不起作用。
我通过 HTTP GET 直接请求成功
https://graph.microsoft.com/beta/users?ConsistencyLevel=eventual&$count=true&$filter=companyName eq 'Company'
所以现在我有一个问题:如何在 C# 中使用 MSGraph API 来做到这一点?