Oliver
Oliver
A bugfix behaves the same as a feature (despite the prefix). So simply the feature stuff was copied and adopted to bugfix. --- This change is [](https://reviewable.io/reviews/jakobehn/gitflow.vs/75)
When using FluentResults with generic types like `IReadOnlyList` it seems that implicit conversation doesn't work and I can't understand why. Maybe someone can enlighten me by this simple example. What...
**Is your feature request related to a problem? Please describe.** In v4 the query parameters of $select, $expand and $orderBy have been set by a single string that had to...
**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...
**Describe the bug** One of the big changes from v4 to v5 was the introduction of the `BackingStore`. And this approach of a stateful object that only returns the changed...
**Describe the bug** [The call](https://github.com/microsoftgraph/msgraph-sdk-dotnet/blob/e3c134418835035e2e967279c286bb7b8a037f91/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs#L426) of `PatchAsync()` claims to return a `Task`, but this return value is always `null` and according to [the documentation](https://learn.microsoft.com/en-us/graph/api/user-update?view=graph-rest-1.0&tabs=http#response-2) it won't return anything. **Client version**...
**Is your feature request related to a problem? Please describe.** While upgrading vom v4 to v5 I wrote the following code to add a member to a group: ```csharp await...
**Describe the bug** When trying to patch the `EducationAssignment.AssignDateTime` via the graph service client, the value won't be set. **To Reproduce** ```csharp [Fact] public void EducationAssignmentSerializesAssignDateTime() { var tokenCredentials =...
**Describe the bug** Unfortunately there is no official code example or documentation available on how to use the SDK to copy a `DriveItem` and check the current process of copying....
**Is your feature request related to a problem? Please describe.** In v4 you could write ```csharp var mails = await client.Me.MailFolders.SentItems.Request().GetAsync(); ``` In v5 this becomes ```csharp var mails =...