我已經開始實施在Azure Blob存儲到我的應用程序和(發展連接問題)使用開發連接字符串(「UseDevelopmentStorage =真;」)時,試圖在這裏製作的容器,當它不幸失敗:Azure的Blob存儲
例外情況是: Microsoft.WindowsAzure.Storage.StorageException未被用戶代碼處理 InnerException: Message =發送請求時發生錯誤。 源= System.Private.CoreLib 的InnerException: 的HResult = -2147012867 消息=與服務器的連接不能建立 源= System.Private.CoreLib ....
我的代碼:
public async void UploadBlob(IFormFile file, string containerReference, string blobReference)
{
var container = _blobClient.GetContainerReference(containerReference);
await container.CreateIfNotExistsAsync();
var blockBlob = container.GetBlockBlobReference(blobReference);
using (var fileStream = file.OpenReadStream())
{
await blockBlob.UploadFromStreamAsync(fileStream);
}
}
任何想法,爲什麼我無法連接?
謝謝,聶
你啓動的本地存儲模擬器? – Kenneth
我將如何啓動它?我可以在VS中的SQL Server對象資源管理器中看到AzureStorageEmulatorDb45,但尚未啓動任何內容。 – Nik