TableStorage 2.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package TableStorage --version 2.0.0
                    
NuGet\Install-Package TableStorage -Version 2.0.0
                    
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="TableStorage" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TableStorage" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="TableStorage" />
                    
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 TableStorage --version 2.0.0
                    
#r "nuget: TableStorage, 2.0.0"
                    
#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 TableStorage@2.0.0
                    
#: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=TableStorage&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=TableStorage&version=2.0.0
                    
Install as a Cake Tool

TableStorage

Streamlined way of working with Azure Data Tables

Usage

Create your own TableContext

public class MyTableContext : TableContext { }

Create your models, these must be classes, inherit ITableEntity and have a parameterless constructor.

public class Model : ITableEntity
{
    public string PartitionKey { get; set; }
    public string RowKey { get; set; }
    public DateTimeOffset? Timestamp { get; set; }
    public ETag ETag { get; set; }
    
    //Add your own custom properties, e.g:
    public string Data { get; set; }
    public bool Enabled { get; set; }
}

Place your tables on your TableContext. The sample below will create 2 tables in table storage, named Models1 and Models2.

public class MyTableContext : TableContext
{
    public TableSet<Model> Models1 { get; set; }    
    public TableSet<Model> Models2 { get; set; }
}

Optionally, override the Configure method to adjust some configuration options

protected override void Configure(TableOptions options)
{
    options.AutoTimestamps = true;
    options.TableMode = TableUpdateMode.Merge;
}

Register your TableContext in your services

builder.Services.AddTableContext<MyTableContext>(builder.Configuration.GetConnectionString("MyConnectionString"));

Inject MyTableContext into your class and use as needed

public class MyService
{
    private readonly MyTableContext _context;

    public MyService(MyTableContext context)
    {
        _context = context;
    }

    public async Task DoSomething(CancellationToken token)
    {
        var entity = await _context.Models1.GetEntityOrDefaultAsync("partitionKey", "rowKey", token);
        if (entity is not null)
        {
            //Do more
        }
    }
}

Linq

A few simple Linq extension methods have been provided in the TableStorage.Linq namespace.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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 (4)

Showing the top 4 NuGet packages that depend on TableStorage:

Package Downloads
TableStorage.RuntimeCompilations

Package Description

TableStorage.Fluent

Package Description

TableStorage.Fluent.Extended

Package Description

TableStorage.Fluent.RuntimeCompilations

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.0.0-preview-05 35 1/30/2026
6.0.0-preview-04 42 1/13/2026
6.0.0-preview-03 47 1/13/2026
6.0.0-preview-01 86 1/8/2026
5.5.0 145 11/28/2025
5.4.0 199 10/26/2025
5.3.0 101 9/26/2025
5.1.0 205 8/11/2025
5.1.0-preview.3 160 7/28/2025
5.1.0-preview.2 440 7/25/2025
5.1.0-preview.1 162 6/17/2025
5.0.2 206 6/5/2025
5.0.1 189 5/26/2025
5.0.0 194 5/26/2025
5.0.0-preview.7 203 4/16/2025
5.0.0-preview.6 134 3/28/2025
5.0.0-preview.5 128 3/28/2025
5.0.0-preview.4 165 3/19/2025
5.0.0-preview.3 153 3/17/2025
5.0.0-preview.2 150 3/13/2025
5.0.0-preview.1 101 2/26/2025
4.7.0-preview.2 95 1/15/2025
4.6.0 179 11/18/2024
4.5.0 121 11/12/2024
4.3.0 120 7/25/2024
4.2.2 113 7/25/2024
4.2.1 173 4/23/2024
4.2.0 151 3/18/2024
4.1.0 137 3/15/2024
4.0.0-preview.9 113 3/13/2024
4.0.0-preview.8 116 3/13/2024
4.0.0-preview.7 109 2/8/2024
4.0.0-preview.6 115 2/4/2024
4.0.0-preview.5 110 1/18/2024
4.0.0-preview.4 153 12/6/2023
4.0.0-preview.3 122 12/6/2023
4.0.0-preview.2 190 11/6/2023
4.0.0-preview.1 142 10/11/2023
3.2.0 306 6/8/2023
3.1.0 350 2/26/2023
3.0.0 330 2/26/2023
2.4.1 399 1/12/2023
2.4.0 386 1/12/2023
2.3.1 390 1/11/2023
2.3.0 504 9/8/2022
2.2.0 491 7/25/2022
2.1.0 539 7/17/2022
2.0.0 531 7/17/2022
1.1.0 521 7/16/2022
1.0.0 533 7/16/2022