0
bmulinari created
- ABP Framework version: v8.3.2
- UI Type: Blazor Server
- Database System: EF Core (SQL Server)
Hi there! I'm new to ABP and I wanted to ask for advice on what would be the best approach for consuming our API back-end in a Windows Forms app. This app will run on multiple clients but all will be accessing the same API endpoint in our multi-tenant solution.
As far as I could gather, my options are:
- Dynamic C# API Client Proxies
- Static C# API Client Proxies
HttpClient
withIIdentityModelAuthenticationService
for authenticationHttpClient
withIdentityModel
for OIDC discovery and authentication
Which one do you suggest that would fit my scenario the best? Due to my multi-tenant solution, in all of the approaches above I would need to manually specify the current tenant, is that correct?