SegregatedStorage.MongoFileRepository 1.3.3

dotnet add package SegregatedStorage.MongoFileRepository --version 1.3.3
NuGet\Install-Package SegregatedStorage.MongoFileRepository -Version 1.3.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SegregatedStorage.MongoFileRepository" Version="1.3.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SegregatedStorage.MongoFileRepository --version 1.3.3
#r "nuget: SegregatedStorage.MongoFileRepository, 1.3.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SegregatedStorage.MongoFileRepository as a Cake Addin
#addin nuget:?package=SegregatedStorage.MongoFileRepository&version=1.3.3

// Install SegregatedStorage.MongoFileRepository as a Cake Tool
#tool nuget:?package=SegregatedStorage.MongoFileRepository&version=1.3.3

SegregatedStorage

A small library for providing segregated storage abstraction for Web API's and similar projects.

Comes with built-in In-Memory support for ease of testing, as well as packages for Azure Blob storage for the actual files and MongoDB for metadata.

Installation

I recommend using the NuGet package: SegregatedStorage however feel free to clone the source instead if that suits your needs better.

For Azure Blob storage support, add this NuGet package: SegregatedStorage.AzureStorageProvider For Mongo File repository support, add this NuGet package: SegregatedStorage.MongoFileRepository

Usage

First inject the core functionality via Dependency Injection. The type of key (here it's int), as well as the naming of collection, databases and containers can be whatever you prefer.

builder.Services.AddMongoFileRepository<int>("connectionString", "files", key => $"db-{key}");
builder.Services.AddAzureStorageProvider<int>("connectionString", key => $"container-{key}");
builder.Services.AddStorageService<int>();

Secondly, if you want to utilize the built-in API endpoints, add those to your app:

var app = builder.Build();

app.MapStorageApi(); // This has an optional configuration you can adjust if need be, e.g. for AntiForgery needs

With all this done you can both inject the IStorageService<TKey> and use it directly, as well as simply use the built-in API endpoints:

- GET /file/{key}/{id}
- DELETE /file/{key}/{id}
- POST /file/{key}

Compatibility

Currently Azure Blob storage is supported for cloud storage of files, and MongoDB is supported as metadata container. Both are configured with a key, to allow for easy segregation of data e.g. between different customers.


Feel free to submit a PR if you add a provider/repository you want to share with everyone else.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.3 1,529 3/8/2024
1.3.2 944 3/7/2024
1.3.1 167 3/4/2024
1.3.0 132 3/1/2024
1.2.0 112 2/29/2024
1.1.0 112 2/26/2024
1.0.1 98 2/25/2024
1.0.0 97 2/25/2024