AzureTableAccessor 1.0.8
.NET 6.0
This package targets .NET 6.0. The package is compatible with this framework or higher.
.NET Standard 2.1
This package targets .NET Standard 2.1. The package is compatible with this framework or higher.
dotnet add package AzureTableAccessor --version 1.0.8
NuGet\Install-Package AzureTableAccessor -Version 1.0.8
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="AzureTableAccessor" Version="1.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AzureTableAccessor --version 1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AzureTableAccessor, 1.0.8"
#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 AzureTableAccessor as a Cake Addin #addin nuget:?package=AzureTableAccessor&version=1.0.8 // Install AzureTableAccessor as a Cake Tool #tool nuget:?package=AzureTableAccessor&version=1.0.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
AzureTableAccessor
The abstraction layer for working with Azure DataTables. Implements a repository that contains methods for creating and retrieving entities from the Azure Table Storage
Getting Started
- Install the package into your project
dotnet add package AzureTableAccessor
- Create entity to table mapping configuration
class YourEntityTableMappingConfiguration : IMappingConfiguration<YourEntity>
{
public void Configure(IMappingConfigurator<YourEntity> configurator)
{
configurator.PartitionKey(e => e.Id, AutoKeyGenerator.Guid)
.RowKey(e => e.RowId)
.Property(e => e.SomeProperty) // or Property(e => e.SomeProperty, "custom_name")
.Content(e => e.SomeAnotherProperty);
}
}
- Use methods
PartitionKey
andRowKey
to configure the mapping of the entity's required keys. In Azure Table storage system entities must have partition and row keys to be properly indexed and queried. These methods allow you to define how these keys should be mapped from the entity's properties.PartitionKey
supports custom auto value generator. Default auto generator isAutoKeyGenerator.Guid
- Use method
Property
to configure mapping of searchable properties. It supports mapping nested properties and custom naming, which can be helpful for organizing and querying large datasets. - Use method
Content
to configure mapping of non searchable property - Use method
ToTable
to configure a custom table name for the entity. By default, the name of the entity is used as the table name, but you can use this method to provide a more meaningful or descriptive name - Use method
AutoConfigure
to auto configuration of properties using convention. It determines whether a property should be configured as a searchable property or a non-searchable property based on its type. If the type is a string or primitive, it should be configured as a searchable property. Otherwise, it should be configured as a non-searchable property.
- Create projection mapping configuration
class YourProjectionConfiguration : IProjectionConfiguration<YourEntity, Projection>
{
public void Configure(IProjectionConfigurator<YourEntity, Projection> configurator)
{
configurator.Property(e => e.Entity.Property, p => p.Property);
}
}
- Add the following line to the
Startup
Configure
method.
services.AddTableClient(options =>
{
options.StorageUri = "StorageUri";
options.StorageAccountKey = "StorageAccountKey";
options.AccountName = "AccountName";
}).ConfigureMap(typeof(YourType).Assembly)
.ConfigureProjections(typeof(YourType).Assembly);
- Inject repository into your service
IRepository<YourEntity> _repository;
await _repository.CreateAsync(entity); //create entity
await _repository.UpdateAsync(entity); //update entity
var results = await _repository.GetCollectionAsync(); //fetch all
var page = await _repository.GetPageAsync(pageSize: 3); //get page
var entity = await _repository.LoadAsync(entity); //load entity
var searchResult = _repository.SingleAsync(e => e.SomeProperty == "condition"); //search single using expression
var searchResults = await _repository.GetCollectionAsync(e => e.SomeProperty == "condition"); //search using expression
IRepository<YourEntity, Projection> _readOnlyRepository;
IEnumerable<Projection> results = await _readOnlyRepository.GetCollectionAsync(); //fetch all
- Use transactions (batch operations)
IUnitOfWork _unitOfWork;
var repository = unitOfWork.CreateRepository<YourEntity>();
await repository.CreateAsync(entity);
await repository.CreateAsync(entity1);
await repository.UpdateAsync(entity3);
await unitOfWork.SaveChangesAsync();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.1
- Azure.Data.Tables (>= 12.8.0)
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 7.0.3)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 7.0.0)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- System.Data.HashFunction.xxHash (>= 2.0.0)
-
net6.0
- Azure.Data.Tables (>= 12.8.0)
- Microsoft.Extensions.Configuration (>= 7.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 7.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 7.0.3)
- Microsoft.Extensions.Configuration.EnvironmentVariables (>= 7.0.0)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- System.Data.HashFunction.xxHash (>= 2.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.