├── .gitattributes ├── .github └── workflows │ └── vale.yml ├── .gitignore ├── CODEOWNERS ├── CS ├── EFCore │ ├── E965.Blazor.Server │ │ ├── App.razor │ │ ├── BlazorApplication.cs │ │ ├── BlazorModule.cs │ │ ├── Controllers │ │ │ └── ReadMe.txt │ │ ├── E965.Blazor.Server.csproj │ │ ├── Editors │ │ │ └── ReadMe.txt │ │ ├── Images │ │ │ └── ReadMe.txt │ │ ├── Model.xafml │ │ ├── Pages │ │ │ └── _Host.cshtml │ │ ├── Program.cs │ │ ├── ReadMe.txt │ │ ├── Services │ │ │ ├── CircuitHandlerProxy.cs │ │ │ └── ProxyHubConnectionHandler.cs │ │ ├── Startup.cs │ │ ├── _Imports.razor │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ └── images │ │ │ ├── Logo.svg │ │ │ └── SplashScreen.svg │ ├── E965.Module │ │ ├── BusinessObjects │ │ │ ├── E965DbContext.cs │ │ │ ├── FileSystemLinkObjectDemo.cs │ │ │ ├── FileSystemStoreObjectDemo.cs │ │ │ ├── ReadMe.txt │ │ │ └── StandardFileDataDemo.cs │ │ ├── Controllers │ │ │ └── ReadMe.txt │ │ ├── DatabaseUpdate │ │ │ ├── ReadMe.txt │ │ │ └── Updater.cs │ │ ├── E965.Module.csproj │ │ ├── Images │ │ │ └── ReadMe.txt │ │ ├── Model.DesignedDiffs.xafml │ │ ├── Module.cs │ │ ├── ReadMe.txt │ │ └── Welcome.html │ ├── E965.Win │ │ ├── App.config │ │ ├── Controllers │ │ │ └── ReadMe.txt │ │ ├── E965.Win.csproj │ │ ├── Editors │ │ │ └── ReadMe.txt │ │ ├── ExpressApp.ico │ │ ├── Images │ │ │ ├── ExpressAppLogo.png │ │ │ ├── Logo.svg │ │ │ └── ReadMe.txt │ │ ├── Model.xafml │ │ ├── Program.cs │ │ ├── ReadMe.txt │ │ ├── Startup.cs │ │ ├── WinApplication.cs │ │ ├── WinModule.cs │ │ ├── XafSplashScreen.Designer.cs │ │ ├── XafSplashScreen.cs │ │ └── XafSplashScreen.resx │ ├── E965.sln │ └── FileSystemData │ │ ├── BusinessObjects │ │ ├── FileSystemLinkObject.cs │ │ └── FileSystemStoreObject.cs │ │ ├── FileSystemData.csproj │ │ ├── Module.Designer.cs │ │ ├── Module.cs │ │ └── Module.resx └── XPO │ └── E965 │ ├── E965.Blazor.Server │ ├── App.razor │ ├── BlazorApplication.cs │ ├── BlazorModule.cs │ ├── Controllers │ │ └── ReadMe.txt │ ├── E965.Blazor.Server.csproj │ ├── Editors │ │ └── ReadMe.txt │ ├── Images │ │ └── ReadMe.txt │ ├── Model.xafml │ ├── Pages │ │ └── _Host.cshtml │ ├── Program.cs │ ├── ReadMe.txt │ ├── Services │ │ ├── CircuitHandlerProxy.cs │ │ └── ProxyHubConnectionHandler.cs │ ├── Startup.cs │ ├── _Imports.razor │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ └── images │ │ ├── Logo.svg │ │ └── SplashScreen.svg │ ├── E965.Module │ ├── BusinessObjects │ │ ├── FileSystemLinkObjectDemo.cs │ │ ├── FileSystemStoreObjectDemo.cs │ │ ├── ReadMe.txt │ │ └── StandardFileDataDemo.cs │ ├── Controllers │ │ └── ReadMe.txt │ ├── DatabaseUpdate │ │ ├── ReadMe.txt │ │ └── Updater.cs │ ├── E965.Module.csproj │ ├── Images │ │ └── ReadMe.txt │ ├── Model.DesignedDiffs.xafml │ ├── Module.cs │ ├── ReadMe.txt │ └── Welcome.html │ ├── E965.Win │ ├── App.config │ ├── Controllers │ │ └── ReadMe.txt │ ├── E965.Win.csproj │ ├── Editors │ │ └── ReadMe.txt │ ├── ExpressApp.ico │ ├── Images │ │ ├── ExpressAppLogo.png │ │ ├── Logo.svg │ │ └── ReadMe.txt │ ├── Model.xafml │ ├── Program.cs │ ├── ReadMe.txt │ ├── Startup.cs │ ├── WinApplication.cs │ ├── WinModule.cs │ ├── XafSplashScreen.Designer.cs │ ├── XafSplashScreen.cs │ └── XafSplashScreen.resx │ ├── E965.sln │ └── FileSystemData │ ├── BusinessObjects │ ├── FileSystemLinkObject.cs │ └── FileSystemStoreObject.cs │ ├── FileSystemData.csproj │ ├── Module.Designer.cs │ ├── Module.cs │ └── Module.resx ├── LICENSE ├── Readme.md └── config.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/vale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/.github/workflows/vale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/App.razor -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/BlazorApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/BlazorApplication.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/BlazorModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/BlazorModule.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/E965.Blazor.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/E965.Blazor.Server.csproj -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Editors/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Editors/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Images/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Model.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Model.xafml -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Pages/_Host.cshtml -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Program.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Services/CircuitHandlerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Services/CircuitHandlerProxy.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Services/ProxyHubConnectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Services/ProxyHubConnectionHandler.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/Startup.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/_Imports.razor -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/appsettings.Development.json -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/appsettings.json -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/wwwroot/css/site.css -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/wwwroot/images/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/wwwroot/images/Logo.svg -------------------------------------------------------------------------------- /CS/EFCore/E965.Blazor.Server/wwwroot/images/SplashScreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Blazor.Server/wwwroot/images/SplashScreen.svg -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/BusinessObjects/E965DbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/BusinessObjects/E965DbContext.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/BusinessObjects/FileSystemLinkObjectDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/BusinessObjects/FileSystemLinkObjectDemo.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/BusinessObjects/FileSystemStoreObjectDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/BusinessObjects/FileSystemStoreObjectDemo.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/BusinessObjects/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/BusinessObjects/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/BusinessObjects/StandardFileDataDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/BusinessObjects/StandardFileDataDemo.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/DatabaseUpdate/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/DatabaseUpdate/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/E965.Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/E965.Module.csproj -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/Images/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/Module.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Module/Welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Module/Welcome.html -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/App.config -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/E965.Win.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/E965.Win.csproj -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/Editors/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/Editors/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/ExpressApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/ExpressApp.ico -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/Images/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/Images/Logo.svg -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/Images/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/Model.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/Model.xafml -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/Program.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/ReadMe.txt -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/Startup.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/WinApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/WinApplication.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/WinModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/WinModule.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/XafSplashScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/XafSplashScreen.Designer.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/XafSplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/XafSplashScreen.cs -------------------------------------------------------------------------------- /CS/EFCore/E965.Win/XafSplashScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.Win/XafSplashScreen.resx -------------------------------------------------------------------------------- /CS/EFCore/E965.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/E965.sln -------------------------------------------------------------------------------- /CS/EFCore/FileSystemData/BusinessObjects/FileSystemLinkObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/FileSystemData/BusinessObjects/FileSystemLinkObject.cs -------------------------------------------------------------------------------- /CS/EFCore/FileSystemData/BusinessObjects/FileSystemStoreObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/FileSystemData/BusinessObjects/FileSystemStoreObject.cs -------------------------------------------------------------------------------- /CS/EFCore/FileSystemData/FileSystemData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/FileSystemData/FileSystemData.csproj -------------------------------------------------------------------------------- /CS/EFCore/FileSystemData/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/FileSystemData/Module.Designer.cs -------------------------------------------------------------------------------- /CS/EFCore/FileSystemData/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/FileSystemData/Module.cs -------------------------------------------------------------------------------- /CS/EFCore/FileSystemData/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/EFCore/FileSystemData/Module.resx -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/App.razor -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/BlazorApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/BlazorApplication.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/BlazorModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/BlazorModule.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/E965.Blazor.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/E965.Blazor.Server.csproj -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Editors/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Editors/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Images/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Model.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Model.xafml -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Pages/_Host.cshtml -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Program.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Services/CircuitHandlerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Services/CircuitHandlerProxy.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Services/ProxyHubConnectionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Services/ProxyHubConnectionHandler.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/Startup.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/_Imports.razor -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/appsettings.Development.json -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/appsettings.json -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/wwwroot/css/site.css -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/wwwroot/favicon.ico -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/wwwroot/images/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/wwwroot/images/Logo.svg -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Blazor.Server/wwwroot/images/SplashScreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Blazor.Server/wwwroot/images/SplashScreen.svg -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/BusinessObjects/FileSystemLinkObjectDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/BusinessObjects/FileSystemLinkObjectDemo.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/BusinessObjects/FileSystemStoreObjectDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/BusinessObjects/FileSystemStoreObjectDemo.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/BusinessObjects/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/BusinessObjects/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/BusinessObjects/StandardFileDataDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/BusinessObjects/StandardFileDataDemo.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/DatabaseUpdate/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/DatabaseUpdate/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/DatabaseUpdate/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/DatabaseUpdate/Updater.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/E965.Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/E965.Module.csproj -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/Images/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/Model.DesignedDiffs.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/Model.DesignedDiffs.xafml -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/Module.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Module/Welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Module/Welcome.html -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/App.config -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/Controllers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/Controllers/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/E965.Win.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/E965.Win.csproj -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/Editors/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/Editors/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/ExpressApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/ExpressApp.ico -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/Images/ExpressAppLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/Images/ExpressAppLogo.png -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/Images/Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/Images/Logo.svg -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/Images/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/Images/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/Model.xafml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/Model.xafml -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/Program.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/ReadMe.txt -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/Startup.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/WinApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/WinApplication.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/WinModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/WinModule.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/XafSplashScreen.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/XafSplashScreen.Designer.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/XafSplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/XafSplashScreen.cs -------------------------------------------------------------------------------- /CS/XPO/E965/E965.Win/XafSplashScreen.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.Win/XafSplashScreen.resx -------------------------------------------------------------------------------- /CS/XPO/E965/E965.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/E965.sln -------------------------------------------------------------------------------- /CS/XPO/E965/FileSystemData/BusinessObjects/FileSystemLinkObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/FileSystemData/BusinessObjects/FileSystemLinkObject.cs -------------------------------------------------------------------------------- /CS/XPO/E965/FileSystemData/BusinessObjects/FileSystemStoreObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/FileSystemData/BusinessObjects/FileSystemStoreObject.cs -------------------------------------------------------------------------------- /CS/XPO/E965/FileSystemData/FileSystemData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/FileSystemData/FileSystemData.csproj -------------------------------------------------------------------------------- /CS/XPO/E965/FileSystemData/Module.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/FileSystemData/Module.Designer.cs -------------------------------------------------------------------------------- /CS/XPO/E965/FileSystemData/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/FileSystemData/Module.cs -------------------------------------------------------------------------------- /CS/XPO/E965/FileSystemData/Module.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/CS/XPO/E965/FileSystemData/Module.resx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/Readme.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevExpress-Examples/XAF_how-to-store-file-attachments-in-the-file-system-instead-of-the-database/HEAD/config.json --------------------------------------------------------------------------------