14 packages tagged with “Table-Storage”
Easily convert POCOs (Plain Old CLR Objects) to Azure Table Storage TableEntities and vice versa.
A repository wrapper for Azure Table Storage that uses POCOs (Plain Old CLR Objects) instead of objects that implemeent ITableEntity. The Azure Storage SDK requires that objects that it works with to implement the ITableEntity interface. This puts us into one of two places that are often not desirable: You implement the ITableEntity interace, or inherit from TableEntity. This is easy, but now you've got a leaky abstraction, as well as properties that won't make much sense in your domain (e.g. instead of a UserId, you've now got a RowKey, of the wrong type), or you have fields that are out of place, like ETag and Timestamp. You create DTOs to save to ship data back and forth from the domain to Table Storage. This is a common style, but often is overkill, especially if we're just looking for a simple abstraction on top of Azure Table Storage. This simple library seeks to take care of the mapping for us, so that you can continue to write your domain objects as POCOs, while still being able to leverage the Azure Storage SDK. The library will convert simple properties to fields in Azure Table Storage. Complex types will serialize as json.
Library for licensing web app components such as Razor Class Libraries
Azure.Data.Wrappers Class Library
King.Azure.Data Class Library
Geared more toward Azure Table Storage (vs CosmosDB, which has an ATS api), using an intra/inter partition (or table) secondary index pattern. This library handles keeping the indexes up to date as data gets mutated.
An implementation of a trie-like data structure using Azure Table Storage to enable type-ahead style searching. Targets netcoreapp2.1, netstandard2.0 and net461.
A locking mechanism for Azure Table Storage entities with blob storage locks, optimized for quick responses and lower costs.
Synchronize Between SQL Server and Azure Table Storage
Easily convert POCOs (Plain Old CLR Objects) to Azure Table Storage TableEntities and vice versa, fork of TableStorage.Abstractions.TableEntityConverters with System.Text.Json instead of Newtonsoft.Json
Azure Blob Storage and Table collectors for data ingestion
Azure Table Storage made simple for .NET. Entity Framework-style data access with automatic batching, retry logic, and type-safe operations. 95% cheaper than other NoSQL solutions.
🌰 Cloud storage providers for AcornDB - AWS S3, Azure Blob Storage, DynamoDB, Azure Table Storage. All with full IRoot pipeline support for compression, encryption, and policy enforcement.
A simplified, modern .NET client library for Azure Table Storage with built-in error handling and intuitive APIs. This library provides an easy-to-use wrapper around Azure.Data.Tables SDK with comprehensive entity operations, flexible querying with OData filters, batch transactions, and type-safe generic support. Perfect for NoSQL data storage scenarios requiring schema-less data with partition and row key indexing. Supports full CRUD operations, partition-based queries, optimistic concurrency with ETags, and atomic batch transactions. Compatible with .NET Standard 2.0+, .NET 7, 8, and 9. Ideal for cloud-native applications, microservices, and distributed systems requiring fast, scalable NoSQL storage with Azure integration.