AzureTableAccessor 1.0.8

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
#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

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

  1. Install the package into your project
dotnet add package AzureTableAccessor
  1. 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 and RowKey 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 is AutoKeyGenerator.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.
  1. 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);
    }
}
  1. 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);
  1. 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
  1. 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 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.

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.0.8 156 4/26/2023
1.0.7 158 4/4/2023
1.0.6 186 3/20/2023
1.0.5 187 3/6/2023
1.0.4 233 3/4/2023
1.0.3 223 3/1/2023
1.0.2 204 2/28/2023
1.0.1 211 2/27/2023
1.0.0 212 2/26/2023