IEvangelist.Azure.CosmosRepository
2.1.0
See the version list below for details.
dotnet add package IEvangelist.Azure.CosmosRepository --version 2.1.0
NuGet\Install-Package IEvangelist.Azure.CosmosRepository -Version 2.1.0
<PackageReference Include="IEvangelist.Azure.CosmosRepository" Version="2.1.0" />
paket add IEvangelist.Azure.CosmosRepository --version 2.1.0
#r "nuget: IEvangelist.Azure.CosmosRepository, 2.1.0"
// Install IEvangelist.Azure.CosmosRepository as a Cake Addin #addin nuget:?package=IEvangelist.Azure.CosmosRepository&version=2.1.0 // Install IEvangelist.Azure.CosmosRepository as a Cake Tool #tool nuget:?package=IEvangelist.Azure.CosmosRepository&version=2.1.0
Azure Cosmos DB Repository .NET SDK
This package wraps the NuGet: Microsoft.Azure.Cosmos package,
exposing a simple dependency-injection enabled IRepository<T>
interface.
The repository is responsible for all
of the create, read, update, and delete (CRUD) operations on objects where T : Item
. The Item
type adds
several properties, one which is a globally unique identifier defined as:
[JsonProperty("id")]
public string Id { get; set; } = Guid.NewGuid().ToString();
Additionally, a type property exists which indicates the subclass name (this is used for filtering implicitly on your behalf):
[JsonProperty("type")]
public string Type { get; set; }
Finally, a partition key property is used internally to manage partitioning on your behalf. This can optionally be overridden on an item per item basis.
📣 Azure Cosmos DB - Official Blog
Getting started
Create an Azure Cosmos DB SQL resource.
Obtain the resource connection string from the Keys blade, be sure to get a connection string and not the key - these are different. The connection string is a compound key and endpoint URL.
Call
AddCosmosRepository
and provide the apps configuration object:public void ConfigureServices(IServiceCollection services) { services.AddCosmosRepository(Configuration); }
The optional
setupAction
allows consumers to manually configure theRepositoryOptions
object:public void ConfigureServices(IServiceCollection services) { services.AddCosmosRepository(Configuration, options => { options.CosmosConnectionString = "< connection string >"; options.ContainerId = "data-store"; options.DatabaseId = "samples"; }); }
Define your object graph, objects must inherit
Item
, for example:using Microsoft.Azure.CosmosRepository; public class Person : Item { public string FirstName { get; set; } public string LastName { get; set; } }
Ask for an instance of
IRepository<TItem>
, in this case theTItem
isPerson
:using Microsoft.Azure.CosmosRepository; public class Consumer { readonly IRepository<Person> _repository; public Consumer(IRepository<Person> repository) => _repository = repository; // Use the repo... }
Perform any of the operations on the
_repository
instance, createPerson
records, update them, read them, or delete.Enjoy!
Configuration
When OptimizeBandwidth
is true
(its default value), the repository SDK reduces networking and
CPU load by not sending the resource back over the network and serializing it to the client. This is specific to writes,
such as create, update, and delete. For more information, see Optimizing bandwidth in the Azure Cosmos DB .NET SDK.
There is much debate with how to structure your database and corresponding containers. Many developers with relational
database design experience might prefer to have a single container per item type, while others understand that Azure Cosmos DB
will handle things correctly regardless. By default, the ContainerPerItemType
option is false
and
all items are persisted into the same container. However, when it is true
, each distinct subclass of
Item
gets its own container named by the class itself.
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 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.Azure.Cosmos (>= 3.14.0)
- Microsoft.Extensions.Http (>= 5.0.0)
- Microsoft.Extensions.Logging (>= 5.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 5.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on IEvangelist.Azure.CosmosRepository:
Package | Downloads |
---|---|
IEvangelist.Azure.CosmosRepository.AspNetCore
This client library enables client applications to connect to Azure Cosmos via a repository pattern around the official Azure Cosmos .NET SDK. Azure Cosmos is a globally distributed, multi-model database service. For more information, refer to http://azure.microsoft.com/services/cosmos-db/. |
|
IEvangelist.Azure.CosmosEventSourcing
This client library enables client applications to connect to Azure Cosmos and use it as an event sourcing store. |
|
AIC.Core.Data.CosmosDb
Package Description |
GitHub repositories (2)
Showing the top 2 popular GitHub repositories that depend on IEvangelist.Azure.CosmosRepository:
Repository | Stars |
---|---|
IEvangelist/azure-cosmos-dotnet-repository
Wraps the .NET SDK for Azure Cosmos DB abstracting away the complexity, exposing a simple CRUD-based repository pattern
|
|
IEvangelist/learning-blazor
The application for the "Learning Blazor: Build Single Page Apps with WebAssembly and C#" O'Reilly Media book by David Pine.
|
Version | Downloads | Last updated |
---|---|---|
8.1.7 | 24,191 | 7/1/2024 |
8.1.6 | 533 | 6/30/2024 |
8.1.5 | 33,050 | 4/10/2024 |
8.1.4 | 27,401 | 3/7/2024 |
8.1.3 | 10,834 | 2/8/2024 |
8.1.2 | 71,530 | 11/29/2023 |
8.1.1 | 2,104 | 11/27/2023 |
8.1.0 | 1,081 | 11/27/2023 |
8.0.0 | 1,878 | 11/20/2023 |
7.1.0 | 16,631 | 9/30/2023 |
7.0.2 | 6,103 | 8/25/2023 |
7.0.1 | 47,055 | 1/22/2023 |
7.0.0 | 6,319 | 1/4/2023 |
3.7.0 | 102,183 | 8/14/2022 |
3.6.0 | 21,361 | 7/23/2022 |
3.5.5 | 13,929 | 6/9/2022 |
3.5.4 | 9,808 | 5/18/2022 |
3.5.3 | 27,827 | 4/7/2022 |
3.5.2 | 6,332 | 3/24/2022 |
3.5.1 | 5,673 | 3/17/2022 |
3.5.0 | 3,666 | 3/14/2022 |
3.4.1 | 1,738 | 3/11/2022 |
3.4.0 | 1,684 | 3/11/2022 |
3.3.0 | 1,830 | 3/10/2022 |
3.2.0 | 1,861 | 3/9/2022 |
3.1.0 | 1,844 | 3/7/2022 |
3.0.3 | 3,185 | 3/5/2022 |
3.0.2 | 2,313 | 3/5/2022 |
3.0.0 | 8,172 | 3/2/2022 |
2.12.1 | 43,281 | 2/2/2022 |
2.12.0 | 3,772 | 2/1/2022 |
2.12.0-pre1 | 921 | 1/21/2022 |
2.11.0 | 5,979 | 1/5/2022 |
2.10.1 | 1,818 | 1/4/2022 |
2.10.0 | 853 | 12/27/2021 |
2.9.0 | 798 | 12/22/2021 |
2.8.0 | 3,471 | 12/15/2021 |
2.7.1 | 949 | 12/15/2021 |
2.7.0 | 3,839 | 11/15/2021 |
2.6.0 | 3,414 | 11/3/2021 |
2.5.3 | 4,708 | 11/1/2021 |
2.5.2 | 1,597 | 10/22/2021 |
2.5.1 | 998 | 10/18/2021 |
2.5.0 | 3,635 | 9/23/2021 |
2.3.0 | 1,867 | 8/18/2021 |
2.2.0 | 1,585 | 7/20/2021 |
2.1.9 | 3,223 | 6/11/2021 |
2.1.6 | 2,112 | 5/10/2021 |
2.1.5 | 3,392 | 2/11/2021 |
2.1.4 | 6,744 | 2/1/2021 |
2.1.3 | 45,053 | 12/11/2020 |
2.1.2 | 1,016 | 12/2/2020 |
2.1.1 | 1,546 | 11/19/2020 |
2.1.0 | 1,851 | 11/10/2020 |
2.0.3 | 1,101 | 10/23/2020 |
2.0.2 | 1,243 | 10/12/2020 |
2.0.1 | 973 | 10/12/2020 |
2.0.0 | 998 | 10/9/2020 |
1.0.5 | 1,064 | 10/8/2020 |
1.0.4 | 1,211 | 10/7/2020 |
1.0.1 | 1,045 | 10/2/2020 |
1.0.0 | 1,087 | 10/1/2020 |
0.0.2-preview | 875 | 9/30/2020 |
0.0.1-preview | 907 | 9/17/2020 |