marten icon indicating copy to clipboard operation
marten copied to clipboard

.NET Transactional Document DB and Event Store on PostgreSQL

Results 157 marten issues
Sort by recently updated
recently updated
newest added

I am playing around with the FlatTableProjection and getting this issue when trying to save a Dictionary too a column. ``` System.InvalidCastException: Can't write CLR type System.Collections.Generic.Dictionary`2[System.String,System.Object] with handler type...

Pull request adds support for Upcasting events data. It provides built-in tooling for simple payload transformations. If your event schema has changed and you'd like to use new event types...

enhancement
event store
serializer
5.x

The inspiration for this enhancement to the LINQ provider comes from my attempt to integrate Marten with the HotChocolate GraphQl library (https://chillicream.com/docs/hotchocolate/). That library comes with some useful out the...

This test is to reproduce an issue we noticed in one of our environments, where inline projection rebuilds would get stuck on gaps in the event stream. Early gaps within...

@apereiratl here is an issue for what we briefly chatted about. Here is a simple Record I have: ``` public RentalProperty(Guid id, string name, PropertyDetails details, PropertySecurityInfo securityInfo) { Id...

I see the below exception pop up in our logs from time-to-time after a successful rebuild, after the shard has already stopped. ``` System.NullReferenceException: Object reference not set to an...

There's 2 tests, one that succeeds and one that fails. The first one fails due to the `unnest` usage. (query cleaned up to make it readable) ``` WITH mt_temp_id_list1CTE as...

bug
linq

fixing #2307 i added to unit tests to document the issue.

bug
linq

Hi there, I'm upgrading Marten from 3.14.3 to 5.8.0 and I'm running in an Exception when my document contains a JObject. When there is no Select-Clause (the full document is...

bug
linq

1. Setup the Marten document store with ```_.Policies.AllDocumentsAreMultiTenanted();``` 2. Store several documents with a specific tenantId. 3. In the aspnet core web api action open the query session with that...