VOOZH about

URL: https://www.nuget.org/packages/HUMANiT.Azure.Data/

⇱ NuGet Gallery | HUMANiT.Azure.Data 2.0.3




👁 Image
HUMANiT.Azure.Data 2.0.3

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package HUMANiT.Azure.Data --version 2.0.3
 
 
NuGet\Install-Package HUMANiT.Azure.Data -Version 2.0.3
 
 
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="HUMANiT.Azure.Data" Version="2.0.3" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HUMANiT.Azure.Data" Version="2.0.3" />
 
Directory.Packages.props
<PackageReference Include="HUMANiT.Azure.Data" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add HUMANiT.Azure.Data --version 2.0.3
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: HUMANiT.Azure.Data, 2.0.3"
 
 
#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.
#:package HUMANiT.Azure.Data@2.0.3
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=HUMANiT.Azure.Data&version=2.0.3
 
Install as a Cake Addin
#tool nuget:?package=HUMANiT.Azure.Data&version=2.0.3
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

HUMANiT Azure Data

Features

  • Cosmos: Simlified access to Azure Cosmos.
  • Cosmos Items: Simplifies and size-optimizes serialization into to Azure Cosmos documents.

Version 2.0 (Upgrade from 1.2)

  • Breaking: Explicit .NET 6 target framework removed. Use .NET 8 instead.
  • Breaking: HUMANiT.Azure.Data.IDataAccess interface removed. Use DataAccess instead.
  • New: Option added to CosmosContext that items are no longer filtered by item type name when read from a container.
  • Improved: CosmosContext provides enhanced read operations.
  • Improved: HUMANiT.Azure.Data.Cosmos.Items.BasicPersistableCosmosItem inherits from EmbeddedCosmosItem now.
  • Improved: Inline documentation.
  • Obsolete: HUMANiT.Azure.Data.Cosmos.ICosmosContext interface deprecated. Use CosmosContext instead.
  • Obsolete: HUMANiT.Azure.Data.Cosmos.Items.*CosmosItem.HealthState property deprecated. Use Health instead.
  • Obsolete: HUMANiT.Azure.Data.Cosmos.Items.EmbeddedPersistableCosmosItem class deprecated. Use EmbeddedCosmosItem instead.

Contact

This package contains features which we require for our own software; therefore, some features are highly custom. If you require a fix, an enhancement, or a more configurable solution, please contact us: support@humanit.nz.

License

MIT -- free software, hell yeah 🤩

Quickstarts

Cosmos

Simlified access to Azure Cosmos.

Located in namespace HUMANiT.Azure.Data.Cosmos.

Quickstart guidance will come.

Cosmos Items

Simplifies and size-optimizes serialization into to Azure Cosmos documents.

Located in namespace HUMANiT.Azure.Data.Cosmos.Items.

Purpose will be explained later.

The parameterless constructor CosmosItem() ... explained later.

The constructor CosmosItem(TDomainObject) ... explained later.

The property ItemTypeName is a built-in object/document type identifier. It is based on the underlying domain object. Its purpose is to deal with Cosmos DB specifics. Different items have different item type names which allows to select all items of one item type when querying data. However, that requirement is only rarely required. To disable their rendering into Cosmos documents and therefore save storage space, override this property and mark it with Newtonsoft.Json.JsonIgnoreAttribute. Example:

// We override this property, so we can exclude it from the serialization into our Cosmos docs.
[JsonIgnore]
public override string ItemTypeName
{
 get => base.ItemTypeName;
 set => base.ItemTypeName = value;
}

The DetermineItemTypeName() method ... explained later.

The Extract() methods ... explained later.

The ExtractProperties() method ... explained later.

The Restore() method ... explained later.

The Restore...() methods ... explained later.

More guidance will come.

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on HUMANiT.Azure.Data:

Package Downloads
HUMANiT.Azure.Logic

Feature logic for use in Azure Functions such as central logging support, domain objects, heartbeat, Swagger doc/UI generation. [covered by 50+ tests]

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.0-alpha-3320 200 5/12/2026
2.0.3 459 4/23/2025
2.0.2 260 4/11/2025
2.0.0 259 4/4/2025
1.2.0 357 3/4/2025
Loading failed

Contact HUMANiT for details: support@HUMANiT.nz