microsoft / PowerPlatform-DataverseServiceClient

Code Replica for Microsoft.PowerPlatform.Dataverse.Client and supporting nuget packages.
MIT License
284 stars 52 forks source link

Question: QueryExtensions async support? #429

Closed dmcweeney closed 10 months ago

dmcweeney commented 10 months ago

Hi,

I just started using this library and am wondering are there any plans to provide async versions of the QueryExtensions methods - GetEntityDataBy*Async?

Thanks, Donal

MattB-msft commented 10 months ago

There is no plan to do that at this time.
Most of the helpers are just wrappers on top of one or more SDK methods. They migrated from the CrmServiceClient and were built to support the migration from the old Asmx format that was in CRM4 and older to the IOrganization Contracts.

In the case of the "Get" functions, we would suggest moving over to use RetrieveMultple directly

If there is enough interest we can consider it.

dmcweeney commented 10 months ago

@MattB-msft thanks for the update and I will go with your suggestion to use RetrieveMultple!