TableStorage 1.1.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package TableStorage --version 1.1.0
NuGet\Install-Package TableStorage -Version 1.1.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="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TableStorage --version 1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: TableStorage, 1.1.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.
// Install TableStorage as a Cake Addin #addin nuget:?package=TableStorage&version=1.1.0 // Install TableStorage as a Cake Tool #tool nuget:?package=TableStorage&version=1.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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
}
}
}
Product | Versions 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Azure.Data.Tables (>= 12.6.1)
- Microsoft.Extensions.Configuration.Abstractions (>= 6.0.0)
- Microsoft.Extensions.DependencyInjection (>= 6.0.0)
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 |
---|---|---|
4.6.0 | 79 | 11/18/2024 |
4.5.0 | 73 | 11/12/2024 |
4.3.0 | 68 | 7/25/2024 |
4.2.2 | 67 | 7/25/2024 |
4.2.1 | 122 | 4/23/2024 |
4.2.0 | 103 | 3/18/2024 |
4.1.0 | 91 | 3/15/2024 |
4.0.0-preview.9 | 67 | 3/13/2024 |
4.0.0-preview.8 | 65 | 3/13/2024 |
4.0.0-preview.7 | 71 | 2/8/2024 |
4.0.0-preview.6 | 73 | 2/4/2024 |
4.0.0-preview.5 | 69 | 1/18/2024 |
4.0.0-preview.4 | 109 | 12/6/2023 |
4.0.0-preview.3 | 84 | 12/6/2023 |
4.0.0-preview.2 | 135 | 11/6/2023 |
4.0.0-preview.1 | 90 | 10/11/2023 |
3.2.0 | 221 | 6/8/2023 |
3.1.0 | 248 | 2/26/2023 |
3.0.0 | 231 | 2/26/2023 |
2.4.1 | 290 | 1/12/2023 |
2.4.0 | 289 | 1/12/2023 |
2.3.1 | 292 | 1/11/2023 |
2.3.0 | 394 | 9/8/2022 |
2.2.0 | 378 | 7/25/2022 |
2.1.0 | 420 | 7/17/2022 |
2.0.0 | 415 | 7/17/2022 |
1.1.0 | 409 | 7/16/2022 |
1.0.0 | 410 | 7/16/2022 |