Microsoft Graph CSharp SDK和过滤 - 如何构建对CreatedDateItem进行过滤的调用?

时间:2017-02-16 15:56:31

标签: c# onedrive microsoft-graph

我正在对Microsoft Graph CSharp SDK进行编码,我正在尝试证明在DriveItems上过滤CreatedDateTime的能力。

我知道如果我构建一个类似的调用:

await graphServiceClient.Drives["user@user.onmicrosoft.com"].Root.Request().GetAsync();

将返回所有元数据,但是,我想知道是否有办法构建一个调用,它会在一次调用中过滤CreatedDateTime,这可能吗?

1 个答案:

答案 0 :(得分:3)

只要基础Graph API方法支持,您就可以对您的请求应用选择,过滤等查询选项。它有点隐藏,但这是documented in the wiki

await graphServiceClient.Drives["user@user.onmicrosoft.com"]
    .Root
    .Request()
    .Filter(...)
    .GetAsync();