0
pablo@ccalp.net created
- ABP Framework version: v7.4.x
- UI Type: Angular
- Database System: EF Core (SQL Server)
I need to use additional functionality of the Azure BlobContainerClient in my project, how can I access it directly without registering another BlobServiceClient in the DI container?
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
1 Answer(s)
-
0
Hi,
You can create a new
BlobContainerClientinstancevar blobServiceClient = new BlobServiceClient(...ConnectionString); var blobContainerClient = blobServiceClient.GetBlobContainerClient(...ContainerName);Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)