Cosmonaut 2.10.0
See the version list below for details.
dotnet add package Cosmonaut --version 2.10.0
NuGet\Install-Package Cosmonaut -Version 2.10.0
<PackageReference Include="Cosmonaut" Version="2.10.0" />
paket add Cosmonaut --version 2.10.0
#r "nuget: Cosmonaut, 2.10.0"
// Install Cosmonaut as a Cake Addin #addin nuget:?package=Cosmonaut&version=2.10.0 // Install Cosmonaut as a Cake Tool #tool nuget:?package=Cosmonaut&version=2.10.0
Cosmonaut
The word was derived from "kosmos" (Ancient Greek: κόσμος) which means world/universe and "nautes" (Ancient Greek: ναῦς) which means sailor/navigator
Cosmonaut is a supercharged SDK with object mapping capabilities that enables .NET developers to work with CosmosDB. It eliminates the need for most of the data-access code that developers usually need to write.
Documentation
Getting started
- How to easily start using CosmosDB in your C# application in no time with Cosmonaut
- (Video) Getting started with .NET Core and CosmosDB using Cosmonaut
- (Video) How to save money in CosmosDB with Cosmonaut's Collection Sharing
- CosmosDB Fluent Pagination with Cosmonaut
- Implementing server side CosmosDB pagination in a Blazor Web App (Part 1: Page Number and Page Size)
- Implementing server side CosmosDB pagination in a Blazor Web App (Part 2: Next/Previous Page)
Samples
- The
samples
folder in this project - Web app server-side pagination for CosmosDB
Usage
The idea is pretty simple. You can have one CosmosStore per entity (POCO/dtos etc). This entity will be used to create a collection or use part of a one in CosmosDB and it will offer all the data access for this object.
Registering the CosmosStores in ServiceCollection for DI support
var cosmosSettings = new CosmosStoreSettings("<<databaseName>>", "<<cosmosUri>>", "<<authkey>>");
serviceCollection.AddCosmosStore<Book>(cosmosSettings);
//or just by using the Action extension
serviceCollection.AddCosmosStore<Book>("<<databaseName>>", "<<cosmosUri>>", "<<authkey>>", settings =>
{
settings.ConnectionPolicy = connectionPolicy;
settings.DefaultCollectionThroughput = 5000;
settings.IndexingPolicy = new IndexingPolicy(new RangeIndex(DataType.Number, -1),
new RangeIndex(DataType.String, -1));
});
//or just initialise the object
ICosmosStore<Book> bookStore = new CosmosStore<Book>(cosmosSettings)
To use the AddCosmosStore
extension methods you need to install the Cosmonaut.Extensions.Microsoft.DependencyInjection
package.
Install-Package Cosmonaut.Extensions.Microsoft.DependencyInjection
or
dotnet add package Cosmonaut.Extensions.Microsoft.DependencyInjection
Retrieving an entity by id (and partition key)
var user = await cosmosStore.FindAsync("userId");
var user = await cosmosStore.FindAsync("userId", "partitionKey");
var user = await cosmosStore.FindAsync("userId", new RequestOptions());
Querying for entities using LINQ
In order to query for entities all you have to do is call the .Query()
method and then use LINQ to create the query you want.
It is HIGHLY recommended that you use one of the Async
methods to get the results back, such as ToListAsync
or FirstOrDefaultAsync
, when available.
var user = await cosmoStore.Query().FirstOrDefaultAsync(x => x.Username == "elfocrash");
var users = await cosmoStore.Query().Where(x => x.HairColor == HairColor.Black).ToListAsync(cancellationToken);
Querying for entities using SQL
// plain sql query
var user = await cosmoStore.Query("select * from c where c.Firstname = 'Smith'").ToListAsync();
or
var user = await cosmoStore.QueryMultipleAsync("select * from c where c.Firstname = 'Smith'");
// or parameterised sql query
var user = await cosmoStore.QueryMultipleAsync("select * from c where c.Firstname = @name", new { name = "Smith" });
Collection sharing
Cosmonaut is all about making integrating with Cosmos DB easy as well as making things such as cost optimisation part of the library.
That's why Cosmonaut supports transparent collection sharing between different types of entities.
Why would you do that?
Cosmos is charging you based on how many RU/s your individual collection is provisioned at. This means that if you don't need to have one collection per entity because you won't use it that much, even on the minimum 400 RU/s, you will be charged money. That's where the magic of schemaless comes in.
How can you do that?
Well it's actually pretty simple. Just implement the ISharedCosmosEntity
interface and decorate your object with the SharedCosmosCollection
attribute.
The attribute accepts two properties, SharedCollectionName
which is mandatory and EntityName
which is optional.
The SharedCollectionName
property will be used to name the collection that the entity will share with other entities.
The EntityName
will be used to make the object identifiable for Cosmosnaut. By default it will pluralize the name of the class, but you can specify it to override this behavior. You can override this by providing your own name by setting the EntityName
value at the attribute level.
Once you set this up you can add individual CosmosStores with shared collections.
Collection naming
Your collections will automatically be named based on the plural of the object you are using in the generic type.
However you can override that by decorating the class with the CosmosCollection
attribute.
Example:
[CosmosCollection("somename")]
By default you are required to specify your collection name in the attribute level shared entities like this:
[SharedCosmosCollection("shared")]
public class Car : ISharedCosmosEntity
{
public string Id { get; set; }
public string CosmosEntityName { get; set; }
}
Even though this is convenient I understand that you might need to have a dynamic way of setting this.
That's why the CosmosStore
class has some extra constructors that allow you to specify the overriddenCollectionName
property. This property will override any collection name specified at the attribute level and will use that one instead.
Note: If you have specified a CollectionPrefix
at the CosmosStoreSettings
level it will still be added. You are only overriding the collection name that the attribute would normally set.
Example
Class implementation:
[SharedCosmosCollection("shared")]
public class Car : ISharedCosmosEntity
{
public string Id { get; set; }
public string CosmosEntityName { get; set; }
}
CosmosStore initialisation:
var cosmosStore = new CosmosStore<Car>(someSettings, "oldcars");
The outcome of this would be a collection named oldcars
because the shared
collection name is overridden in the constructor.
There are also method overloads for the same property at the dependency injection extension level.
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 | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.6 is compatible. netstandard2.0 was computed. 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 | tizen30 was computed. 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 1.6
- Humanizer.Core.uk (>= 2.5.16)
- Microsoft.Azure.DocumentDB.Core (>= 2.2.1)
- NETStandard.Library (>= 1.6.1)
NuGet packages (9)
Showing the top 5 NuGet packages that depend on Cosmonaut:
Package | Downloads |
---|---|
Cosmonaut.Extensions.Microsoft.DependencyInjection
Microsoft Dependency Injection extension methods |
|
Cosmonaut.ApplicationInsights
ApplicationInsights support for Cosmonaut |
|
Marketplace.Helpers
Helpers for OrderCloud middleware projects |
|
trifenix.connect.db.cosmos
Operaciones de base de datos cosmos db |
|
trifenix.connect.entities.cosmos
Entidades base para base de datos cosmos db usadas en trifenix connect. |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Cosmonaut:
Repository | Stars |
---|---|
Elfocrash/Cosmonaut
🌐 A supercharged Azure CosmosDB .NET SDK with ORM support
|
Version | Downloads | Last updated |
---|---|---|
3.0.0-preview1 | 79,391 | 10/20/2019 |
2.11.3 | 381,083 | 7/5/2019 |
2.10.0 | 57,376 | 3/23/2019 |
2.9.0 | 5,337 | 2/28/2019 |
2.8.2 | 15,693 | 1/17/2019 |
2.8.1 | 1,259 | 1/10/2019 |
2.7.1 | 5,751 | 12/11/2018 |
2.7.0 | 29,071 | 12/3/2018 |
2.6.2 | 2,470 | 11/15/2018 |
2.5.0 | 2,507 | 11/8/2018 |
2.4.2 | 3,946 | 10/8/2018 |
2.4.0 | 3,749 | 9/24/2018 |
2.3.2 | 1,977 | 9/20/2018 |
2.2.0 | 95,130 | 9/12/2018 |
2.0.4 | 3,038 | 9/7/2018 |
2.0.3 | 1,898 | 8/9/2018 |
Please report any issues on Github.