Open
Description
Describe the proposal
Currently, we can call the CreateInvokeHttpClient from DaprClient to create a preconfigured HttpClient. It would be great to leverage the IHttpClientFactory of ASP.NET Core with the same level of integration as the CreateInvokeHttpClient.
In short, there's how it could be used :
services.AddDaprHttpClient<CartClient, CartClient>("appId");
I've created a PR to see how it could be implemented.