1 Answer(s)
-
0
Upgrade all
Microsoft.Extensions.FileProviders.Embeddedpackages from3.1.6to3.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
ConfigureServicesof yourXXXWebModule.csConfigure<AbpBlobStoringOptions>(options => { options.Containers.ConfigureDefault(container => { container.UseDatabase(); }); });Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) - Add