Niobium.Database.StorageTable 4.0.33

There is a newer version of this package available.
See the version list below for details.
dotnet add package Niobium.Database.StorageTable --version 4.0.33
                    
NuGet\Install-Package Niobium.Database.StorageTable -Version 4.0.33
                    
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="Niobium.Database.StorageTable" Version="4.0.33" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Niobium.Database.StorageTable" Version="4.0.33" />
                    
Directory.Packages.props
<PackageReference Include="Niobium.Database.StorageTable" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Niobium.Database.StorageTable --version 4.0.33
                    
#r "nuget: Niobium.Database.StorageTable, 4.0.33"
                    
#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.
#:package Niobium.Database.StorageTable@4.0.33
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Niobium.Database.StorageTable&version=4.0.33
                    
Install as a Cake Addin
#tool nuget:?package=Niobium.Database.StorageTable&version=4.0.33
                    
Install as a Cake Tool

Niobium.Database.StorageTable

Niobium.Database.StorageTable provides a flexible, high-level abstraction for working with Azure Table Storage in .NET and Blazor applications. It enables secure, efficient, and testable access to table storage with support for dependency injection, caching, and advanced configuration.

What is this project about?

  • Implements repository patterns for Azure Table Storage with async CRUD operations.
  • Provides dependency injection modules for easy integration in .NET and Blazor projects.
  • Supports memory-cached repositories for performance.
  • Integrates with Niobium.Identity for secure, token-based access.

Getting Started

1. Install the NuGet Package

Add the package to your .NET or Blazor project:

dotnet add package Niobium.Database.StorageTable

2. Register Services in Dependency Injection

Add Niobium.Database.StorageTable to your DI container (typically in Program.cs):

using Niobium.Database.StorageTable;

var builder = WebApplication.CreateBuilder(args);
builder.Services.AddDatabase(options =>
{
    options.FullyQualifiedDomainName = "youraccount.table.core.windows.net";
    options.Key = "your-access-key";
    // ...other options...
});

3. Use the Repository in Your Application

Inject and use the repository in your services or components:

@inject IRepository<MyEntity> Repository

var entities = await Repository.GetAsync(100);
  • Use AddMemoryCachedRepository<T>() for in-memory caching.
  • Supports advanced scenarios with custom options and authentication.

4. Integration with Other Niobium Packages

Niobium.Database.StorageTable is designed to work seamlessly with:

  • Niobium.Identity for authentication and resource tokens
  • All other Niobium.* packages

Contributing

Contributions are welcome! To contribute:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes with clear commit messages
  4. Submit a pull request

Please ensure your code follows the existing style and includes appropriate tests and documentation.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Niobium.Database.StorageTable:

Package Downloads
Niobium.Platform.StorageTable

Azure Table Storage access and entitlement for .NET apps.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.2.66 100 9/4/2026
4.0.60 134 8/30/2026
4.0.58 90 8/30/2026
4.0.57 108 8/29/2026
4.0.56 195 8/29/2026
4.0.55 106 8/28/2026
4.0.54 90 8/28/2026
4.0.53 101 8/27/2026
4.0.48 107 8/9/2026
4.0.42 325 7/18/2026
4.0.37 113 7/17/2026
4.0.35 126 7/17/2026
4.0.34 137 7/17/2026
4.0.33 120 7/16/2026
4.0.32 215 7/2/2026
3.4.30 228 12/22/2025
3.4.29 334 11/11/2025
3.4.28 218 11/2/2025
3.4.27 162 11/1/2025
3.4.26 157 11/1/2025
Loading failed