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

Medium to long term things here folks, so nobody get too upset or anxious about anything here yet. I'm just thinking out loud here. ## Problems: * Code generation approach...

enhancement
event store
7.x

When a stream fetched using optimistic concurrency via `FetchForWriting` is archived using `IDocumentSession.Events.ArchiveStream()` any events that have been appended in the same transaction prior to calling `ArchiveStream()` remain with `is_archived...

Given a projection of shape: ```cs public record Point(Guid Id, string Name) { public static Point Create(PointCreated e) => new(e.Id, e.Point.Name,); public static Point Apply(Point state, PointEdited e) => state...

Hi. We are currently working on upgrading from V6 to V7 but are running into the following issue. Given the following document definition: ```csharp public sealed class Foo { public...

For most of our applications we are used to configuring a single `JsonSerializerOptions` instance that is reused everywhere. For consistency we would also like to use the same configuration for...

Bumps [Npgsql](https://github.com/npgsql/npgsql) from 4.1.3.1 to 4.1.13. Release notes Sourced from Npgsql's releases. v4.1.13 This version contains a high-severity security patch for CVE-2024-32655 everyone is advised to upgrade. Thanks to @​paul-gerste-sonarsource...

dependencies
.NET

* Adds an example OData API which exposes an IMartenQueryable to enable queries to execute against the database * Adds a docker-compose launch project which runs compose up on the...

Attempting to perform a query using Marten Queryable and ASP.NET OData 8 and seeing the following exception when a nullable type is referenced in the OData $filter: ``` System.InvalidOperationException: variable...

This issue is to track the work on this feature discussed on discord that I am currently implementing. The goal is to make it possible to query based on the...