PowerPlatform-DataverseServiceClient icon indicating copy to clipboard operation
PowerPlatform-DataverseServiceClient copied to clipboard

Code Replica for Microsoft.PowerPlatform.Dataverse.Client and supporting nuget packages.

Results 69 PowerPlatform-DataverseServiceClient issues
Sort by recently updated
recently updated
newest added

https://github.com/microsoft/PowerPlatform-DataverseServiceClient/blob/dc278e33f6ad4e1b13335d70bb1ee53c6f8d9235/src/GeneralTools/DataverseClient/Client/Utils/Utils.cs#L1097-L1111 My application uses multithreading and sometimes such an error occurs "Collection was modified; enumeration operation may not execute.", most likely since I use multithreading, then at the same time...

Investigating

When we try to retrieve fields where field level security is enabled, those fields are not returned at all.

I‘m getting this issue occasionally for azure function app, I'm using the latest verion of Microsoft.PowerPlatform.Dataverse.Client(0.6.1). Full Exception : Microsoft.PowerPlatform.Dataverse.Client.Utils.DataverseConnectionException : Failed to connect to Dataverse ---> System.AggregateException : One...

Investigating

Currently the max connection timeout is static-only - ServiceClient.MaxConnectionTimeout; this is inconvenient for situation like having a service than handles async workload (where long waiting is tolerable, desired even sometimes...

enhancement

Sometimes, somehow, `ExecuteOrganizationRequestImpl` returns null without setting `LastException`. https://github.com/microsoft/PowerPlatform-DataverseServiceClient/blob/254952f3a781f1ab363c56f1a43c4d9b49652fed/src/GeneralTools/DataverseClient/Client/ServiceClient.cs#L1969-L1971 This leads to a `NullReferenceException` instead of the real error, which is very confusing. Verified in 0.5.17 and 0.6.1. Here's an...

Investigating

Hi, We are getting the following error when creating a custom activity record. We are using Microsoft.PowerPlatform.Dataverse.Client version 1.0.1. This is a .Net 6.0 application. I have created a small...

Investigating

https://github.com/microsoft/PowerPlatform-DataverseServiceClient/blob/254952f3a781f1ab363c56f1a43c4d9b49652fed/src/GeneralTools/DataverseClient/Client/Connector/WebProxyClient.cs#L209 The WebProxyClient's Dispose method seems close over the ClientBase's dispose method, and also I call ServiceClient.Dispose every time, there are lots of HttpClient in HttpChannelFactory: ![image](https://user-images.githubusercontent.com/3711046/160244037-41b2bda2-9b62-4ad4-b7a6-b2e91449e22d.png)

The following Linq query will return all columns from CDS, I'd only expect the Id column to be returned. ```cs Guid accountId = (from a in context.AccountSet where a.Name.Equals("Wonka Chocolate...

enhancement
Server Platform API Fix\Change

Using ASP.NET 6 Web API, we're not able to authenticate using ServiceClient (v0.5.17) to an **on-premise instance (v8.2)** configured with IFD using **ADFS 2016.** The SDK is unsuccessful in retrieving...

Investigating