Browse Source
Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
pull/23827/head
Berkan Sasmaz
4 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
docs/en/Community-Articles/2025-09-30-Where-and-How-to-Store-Your-BLOB-Objects-in-dotnet/POST.md
|
|
|
@ -176,7 +176,7 @@ namespace BlobStoringDemo |
|
|
|
Here, we are doing the followings: |
|
|
|
|
|
|
|
- Injecting the `IBlobContainer` service. |
|
|
|
- Saving the BLOB data to the database with the `SaveAsync` method. (_it allows to use byte arrays or streams_) |
|
|
|
- Saving the BLOB data to the database with the `SaveAsync` method. (_it allows you to use byte arrays or streams_) |
|
|
|
- Retrieving the BLOB data from the database with the `GetAllBytesAsync` method. |
|
|
|
- Checking if the BLOB exists with the `ExistsAsync` method. |
|
|
|
- Deleting the BLOB data from the database with the `DeleteAsync` method. |
|
|
|
|