HUMANiT.Azure.Data 1.1.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package HUMANiT.Azure.Data --version 1.1.0
NuGet\Install-Package HUMANiT.Azure.Data -Version 1.1.0
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="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HUMANiT.Azure.Data --version 1.1.0
#r "nuget: HUMANiT.Azure.Data, 1.1.0"
#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 HUMANiT.Azure.Data as a Cake Addin
#addin nuget:?package=HUMANiT.Azure.Data&version=1.1.0

// Install HUMANiT.Azure.Data as a Cake Tool
#tool nuget:?package=HUMANiT.Azure.Data&version=1.1.0

HUMANiT Azure Data

This package provides logic that we miss in .NET for Azure Data access, but that find valuable for our own daily software development. -- the people of HUMANiT

This package is covered by 100+ automated tests and offers an API that is documented extensively inline.

Features

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

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.

Contact

  • Twitter -- stay in touch (@HUMANiTnz)
  • Facebook -- message with us (@HUMANiTnz)
  • support@humanit.nz -- contact us via email

License

MIT -- free software, hell yeah 🤩

Quickstarts

Cosmos

Located in namespace HUMANiT.Azure.Data.Cosmos.

Quickstart guidance will come.

Cosmos Items

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

Item types are built-in object/document type identifiers and are based on the underlying domain object. Their 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 often not required. To disable their rendering into Cosmos documents, override them, this property is not required, 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;
}

More guidance will come.

Product Compatible and additional computed target framework versions.
.NET 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. 
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
1.2.0-preview-3021 72 2/8/2024
1.1.0 371 11/4/2023
1.0.5 126 9/18/2023
1.0.4 267 3/31/2023
1.0.3 330 1/17/2023
1.0.1 397 1/10/2023
1.0.0 401 10/19/2022
0.7.0 3,057 4/2/2020

Contact HUMANiT for details: support@HUMANiT.nz