doc/WebSite/Blob-Storing-Azure.md
BLOB Storing Azure Provider can store BLOBs in Azure Blob storage.
Install the Abp.BlobStoring.Azure NuGet package to your project and add [DependsOn(typeof(AbpBlobStoringAzureModule))] to the ABP module class inside your project.
Configuration is done in the Initialize method of your module class.
Example: Configure to use the azure storage provider by default
Configuration.Modules.AbpBlobStoring().Containers.Configure<AbpBlobStoringOptions>(options =>
{
options.Containers.ConfigureDefault(container =>
{
container.UseAzure(azure =>
{
azure.ConnectionString = "your azure connection string";
azure.ContainerName = "your azure container name";
azure.CreateContainerIfNotExists = true;
});
});
});