Hi,
You want to store the files in a separate database right?
You can do it, we have an exmaple: https://github.com/abpframework/abp-samples/tree/master/EfCoreMigrationDemo
Thanks for your effort.
Can it be configed to become multi database without module source code?
Hi,
Can you try add using namespace?
using Volo.Abp.BlobStoring.Database
. PS: please do it in theDomainModule
class
Hello, I can do it in MyProjectDomainModule class,and may I know where table of the file info storing into by default or I need to fully config it before I use?
may I know the purpose of abp CRUD page? Cannot generate CRUD page, is it improtant?
Hi,
Yes you can. see: https://docs.abp.io/en/commercial/latest/modules/file-management#setting-blob-provider
May I konw which BLOB Provider is in default?
The default file management module does not use any BLOB providers, you need to set it manually.
There are BLOB providers:https://docs.abp.io/en/abp/latest/Blob-Storing#blob-storage-providers, you can choose what y
I have follow the instruction but the database cannot be configurated, any advice on which part I have missed?
HI,
Are you talking about custom database tables?
See: https://docs.abp.io/en/abp/4.4/Entity-Framework-Core#mapefcoredbcontext
Example:
ObjectExtensionManager.Instance.MapEfCoreDbContext<FileManagementDbContext>(b => { //.... });
Hello, I am talking the file management module , how to config Setting BLOB Provider in the case without the source code(nuget only)? https://docs.abp.io/en/commercial/latest/modules/file-management
In default, I am using fake BLOB provider, how can I set it to the database one?