0
alper created
Support Team
Director
1 Answer(s)
-
0
Upgrade all
Microsoft.Extensions.FileProviders.Embedded
packages from3.1.6
to3.1.8
.To do this find/replace all the below line
Include="Microsoft.Extensions.FileProviders.Embedded" Version="3.1.6"
with this line
Include="Microsoft.Extensions.FileProviders.Embedded" Version="3.1.8"
There are 2 namespace changes
- Add
using Volo.Saas.Editions;
toSaasDataSeedContributor.cs
- Add
using Volo.Saas.Tenants;
toXXXDbMigrationService.cs
You'll get the following error: No BLOB Storage provider was registered! At least one provider must be registered to be able to use the Blog Storing System.
To fix this;
Add the below package to the project
XXX.EntityFrameworkCore
:<PackageReference Include="Volo.Abp.BlobStoring.Database.EntityFrameworkCore" Version="3.3.0" />
Add the below configuration to the
ConfigureServices
of yourXXXWebModule.cs
Configure<AbpBlobStoringOptions>(options => { options.Containers.ConfigureDefault(container => { container.UseDatabase(); }); });
- Add