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

Calling `.AddSubclass()` multiple times for a document does not behave the same as `.AddSublassHierarchy(T1, T2)`. Using the former you are not able to perform actions (query/delete/load etc) on mid-hierarchy types....

I believe I simplified the issue. If I have more time, I may be able to create an example if needed to reproduce. On a new database where there are...

bug
schema management

At times, when creating modular software, it would be useful to be able to add events and event appliers for existing projections from external libraries. An example: If i have...

event store
feature request

@oskardudycz as promised. When running text search against documents, exact and partial words will return results but only when in string properties. Enums must be an exact match, although the...

question
linq

Possible options: - style cop, - resharper settings, - rider settings.

enhancement
up-for-grabs

I have an event `ThreadStarted`: ```csharp public record ThreadStarted(string SenderSubscriptionId, string ReceiverSubscriptionId, string Topic, DateTimeOffset On, string By, string Message); ``` And a Projection `Thread`: ```csharp public record Thread {...

Recreation for the below exception: ``` Failed while trying to detect high water statistics System.InvalidOperationException: An open data reader exists for this command. at Npgsql.NpgsqlCommand.set_Connection(NpgsqlConnection value) at Marten.Services.AutoOpenSingleQueryRunner.Query[T](ISingleQueryHandler`1 handler, CancellationToken...

While trying to migrate to Marten from mongoDB I noticed that some generic projection functionality is missing in Marten which could be quite useful in many cases. For example with...