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

Is there any timeline on when you are planning to release v3?

When I use the CosmosStoreTrigger in my function to trigger when a document changes, I get this error when the function app starts: The 'xxx' function is in error: Microsoft.Azure.WebJobs.Host:...

Hi, We've been using Cosmonaut for a while and recently we got it deployed under some heavy load on PROD. We seem to be getting a few weird exceptions for...

Hi @Elfocrash, great work with Cosmonaut i really enjoy using it 👏 I was wondering if support for geospatial queries is something that's planned or on the roadmap? A workaround...

I'm going for EF Core 3.1 for Cosmos Db mapping. Did I miss something? In a new project, I'm opting for EF Core. The main reason is POCO entities thanks...

I am trying to setup a unit test for the following method I created: **---- Service Method ----** public async Task GetEmployeesAsync() { return await _store.Query().ToListAsync()); } **-----** I setup...

I have a query like this: ``` cs await _postRepository.CosmosStore.Query().Where(w => w.SourceType == SourceType.News) .OrderByDescending(o => o.PublishTime) .WithPagination(1, 50).ToPagedListAsync(); ``` and next I try to get next page: ``` cs...

In my scenario, I already have a "shared" collection. Cosmonaut wasn't around at that time so we built our own variant of this. This one's better. ;) So, we would...

Hi, Method FindAsync could not find record by Id value. When I execute this line of code: `var workflow = await _cosmosStore.FindAsync(command.WorkflowId, new PartitionKey("id"));` I'm getting error: ` Executed 'ProcessWorkflows'...

I've updated the 3.0.0-preview1 NuGet package and while #117 seels to suggest that Pagination should be working, I can't figure out how to use it anymore. It feels like something...