Cosmonaut icon indicating copy to clipboard operation
Cosmonaut copied to clipboard

🌐 A supercharged Azure CosmosDB .NET SDK with ORM support

Results 29 Cosmonaut issues
Sort by recently updated
recently updated
newest added

So I recently ran into this: https://github.com/Elfocrash/Cosmonaut/blob/4ecd03a529bc251b8def82726acf4e3360119b89/src/Cosmonaut/Extensions/TaskExtensions.cs#L22 I *think* it was from doing too many tasks in one go, but there's really no way to be sure without logging the...

**Finally a preview of Cosmonaut v3 is out** So I took some time to upgrade Cosmonaut to the v3 SDK of Microsoft.Azure.Cosmos. From what I can see it is about...

enhancement

Currently Cosmonaut does not allow fetching data with pagination without defining an initial page size (as first request). This is against a recommendation we received from Cosmos DB: `You are...

I'm trying to save a document in the database that has a '$type$' property. I thought about using the Request options parameter of the AddAsync method, however this appears to...

I can not connect cosmosdb on azure from local. It has error : The requested name is valid, but no data of the requested type was found

Let say I am excecuting this query `SELECT VALUE t.startDate FROM Items t ORDER BY t.startDate ASC ` And it returns this result: (please notice - there are 8 records...

This pull request allows the developer to specify typed predicate which will then be applied to allow LINQ -> SQL query requests. An example of how to configure a global...

enhancement

As per the issue I raised: https://github.com/Elfocrash/Cosmonaut/issues/83 I've created fluent mapping methods which allow the consumer to map entities through an interface rather than decoratively through attributes. This approach gives...

enhancement

We're doing some load testing on our staging environment, and I'm seeing alot of the following in AI: Microsoft.Azure.Documents.RequestRateTooLargeException Cosmonaut.Diagnostics.CosmosEventCall+d__8`1.MoveNext |   -- | -- Shouldn't these type of errors be...

When using Raw Sql with the following query: ``` SELECT * FROM(SELECT c.id, c.SomeProperty, c.CreatedBy, c.CosmosEntityName FROM c WHERE c.SomeProperty= @SomeProperty) AS c WHERE (CONTAINS(LOWER(c.CreatedBy), LOWER(@CreatedBy0)) order by c.id desc...

bug