执行 `Me.Request().Expand("Manager").GetAsync()` 时没有管理器

No Manager when Executing `Me.Request().Expand("Manager").GetAsync()`

当我 运行 以下代码时,我得到 me.Manager 的空响应:

var me = await graphServiceClient.Me.Request().Expand("Manager").GetAsync();

但是使用 Graph Explorer,下面确实给我的经理:

HTTP GET: https://graph.microsoft.com/v1.0/me/manager

如何让我的经理使用 MS Graph .Net Core SDK?

我发现我必须使用 Microsoft Graph 的 Beta 版,因为只有这样才能在 SDK 和图形资源管理器中扩展管理器。我改用它并且有效:

https://www.nuget.org/packages/Microsoft.Graph.Beta/