TableStorage.Abstractions.TableEntityConverters
1.1.0
See the version list below for details.
dotnet add package TableStorage.Abstractions.TableEntityConverters --version 1.1.0
NuGet\Install-Package TableStorage.Abstractions.TableEntityConverters -Version 1.1.0
<PackageReference Include="TableStorage.Abstractions.TableEntityConverters" Version="1.1.0" />
paket add TableStorage.Abstractions.TableEntityConverters --version 1.1.0
#r "nuget: TableStorage.Abstractions.TableEntityConverters, 1.1.0"
// Install TableStorage.Abstractions.TableEntityConverters as a Cake Addin #addin nuget:?package=TableStorage.Abstractions.TableEntityConverters&version=1.1.0 // Install TableStorage.Abstractions.TableEntityConverters as a Cake Tool #tool nuget:?package=TableStorage.Abstractions.TableEntityConverters&version=1.1.0
Easily convert POCOs (Plain Old CLR Objects) to Azure Table Storage TableEntities and vice versa. This version is for .net core
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 | netcoreapp2.0 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.0
- WindowsAzure.Storage (>= 8.3.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on TableStorage.Abstractions.TableEntityConverters:
Package | Downloads |
---|---|
TableStorage.Abstractions.POCO
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. |
|
TableStorage.Abstractions.Trie
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. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.3 | 7,433 | 8/29/2023 |
2.0.1 | 11,319 | 4/2/2022 |
2.0.0 | 12,929 | 1/23/2022 |
1.6.0-beta | 8,652 | 1/20/2022 |
1.5.0 | 15,236 | 11/17/2021 |
1.5.0-beta | 1,433 | 11/15/2021 |
1.4.1 | 2,178 | 11/3/2021 |
1.4.0 | 7,041 | 9/30/2021 |
1.3.2 | 1,345 | 6/26/2021 |
1.3.1 | 6,691 | 8/19/2020 |
1.3.0 | 3,704 | 5/11/2020 |
1.3.0-beta | 424 | 5/11/2020 |
1.2.0 | 7,671 | 3/2/2020 |
1.1.8 | 2,555 | 2/25/2020 |
1.1.7 | 3,912 | 2/17/2020 |
1.1.6 | 1,374 | 9/16/2019 |
1.1.5 | 20,551 | 6/18/2019 |
1.1.4 | 8,967 | 12/25/2018 |
1.1.3 | 19,302 | 1/27/2018 |
1.1.2 | 10,546 | 8/31/2017 |
1.1.0 | 1,037 | 8/30/2017 |
1.0.1 | 1,174 | 8/15/2017 |
1.0.0 | 1,198 | 8/14/2017 |
This release introduces the ability to ignore properties when converting to an TableEntity. You'd do this if you don't want to save certain properties to Azure Table Storage. This release also was updated to .net core 2.0.