msgraph-sdk-dotnet icon indicating copy to clipboard operation
msgraph-sdk-dotnet copied to clipboard

Microsoft Graph Client Library for .NET!

Results 212 msgraph-sdk-dotnet issues
Sort by recently updated
recently updated
newest added

**Describe the bug** In SDK v4 we could do the following call: ```C# var user = new(){...} var result = await graphClient.Users.Request().Select("mailNickname").AddAsync(user); ``` This would create a new user with...

Bug: metadata
OpenApi

**Describe the bug** Workbook `UsedRange` doesn't support `requestConfiguration.QueryParameters.Select`. It would be also great to understand and document how to deserialize the `values` which is a `Microsoft.Graph.Models.Json` object. **To Reproduce** ![image](https://github.com/microsoftgraph/msgraph-sdk-dotnet/assets/57708659/a81a860e-d3d4-424e-99e5-4811e718f5f5)...

Bug: metadata
OpenApi

Hi @andrueastman, I hope this message finds you well. We recently had a discussion concerning the backing store in issue #1813. It appears that we are encountering difficulties with tracking...

Needs: Attention :wave:

**Describe the bug** According to the [documentation ](https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0#instance-attributes) each drive item can within a GET request return this value: `@microsoft.graph.downloadUrl` Currently this property is not mapped within a `DriveItem` and...

Bug: metadata

As part of the Go effort to decrease the size and optimize the performance of the pre-package service library, one of the solutions was to map internally all the /me...

Request: enhancement
breaking change

Have filenames this long does not help one bit. Can you please find a solution for this? ``` Cloning into 'msgraph-sdk-dotnet'... remote: Enumerating objects: 520941, done. remote: Counting objects: 100%...

Request: enhancement
Status: Needs investigation

I'm in the process of migrating some code from v4 to v5 and encounter the same bug while using the NextPageRequest (v4) in the PageIterator (v5). I have to get...

Question: SDK
Needs: Attention :wave:

This is erroring out in V5. `var members = await _graphServiceClient.Groups[groupId].Members[id].GraphUser.GetAsync()` In V4 I could do this NO PROBLEM: `var members = await _graphServiceClient.Groups[groupId].Members[id].Request().GetAsync() ` Right now, i have do...

Bug: metadata
OpenApi

**Describe the bug** The query parameter allowExternal is missing. Mentioned [here](https://learn.microsoft.com/en-us/graph/api/drive-sharedwithme?view=graph-rest-1.0&tabs=http#response) ``` var result = await m_client.Drives["{drive-id}"] .SharedWithMe .GetAsync(requestConfiguration => { requestConfiguration.QueryParameters.AllowExternal = true; }); ``` **To Reproduce** Steps to...

Bug: metadata
OpenApi

**Describe the bug** I have a Microsoft 365 E5 Sandbox Tenant where I am developing an app that uses the MsGraph C# SDK. When I use the SDK to delete...

Needs: Attention :wave:
Status: Needs investigation