diff --git a/docs/en/Blog-Posts/2020-06-05 v2_9_Release/Post.md b/docs/en/Blog-Posts/2020-06-05 v2_9_Release/Post.md index 90aa5771c7..d88367a8ce 100644 --- a/docs/en/Blog-Posts/2020-06-05 v2_9_Release/Post.md +++ b/docs/en/Blog-Posts/2020-06-05 v2_9_Release/Post.md @@ -75,9 +75,25 @@ public class MyService : ITransientDependency } ```` +`TestContainer1` is an empty class that has no purpose than identifying the container. + A typed (named) container can be configured to use a different storing provider than the default one. It is a good practice to always use a typed container while developing re-usable modules, so the final application can configure provider for this container without effecting the other containers. +**Example: Configure the File System provider for the `TestContainer1`** +````csharp +Configure(options => +{ + options.Containers.Configure(configuration => + { + configuration.UseFileSystem(fileSystem => + { + fileSystem.BasePath = "C:\\MyStorageFolder"; + }); + }); +}); +```` -See the blob storing documentation for more information. +See the [blob storing documentation](https://docs.abp.io/en/abp/latest/Blob-Storing) for more information. +### Oracle Integration Package for Entity Framework Core \ No newline at end of file