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

Eliminate the Reflection hit. Not a huge priority, but for folks that depend on it, it might matter.

performance

```csharp [Fact] public void BulkInsertTest() { var connectionString = ""; var store = DocumentStore.For(connectionString); var successModels = Enumerable .Range(1, 10) .Select(i => new BulkInsertSuccess { Id = i, Value =...

This is strictly an optimization for the new V4 Async Daemon. For async projections where you need to do extra database lookups for some events, have an option where the...

performance

Separating this out as an issue in case we can't quite fit it into V4 (likely). The goal here is that in some circumstances, make all the updates to a...

enhancement
event store

Just a placeholder, and this is likely post-4.0 regardless.

event store

I am using the joining of related documents according to this documentation: https://martendb.io/documentation/documents/querying/include/ Maybe I am using it wrong but there are a few things with this approach which don't...

linq

Hello. I have TransactionScope: ``` _transactionScope = new TransactionScope( TransactionScopeOption.Required, new TransactionOptions { IsolationLevel = IsolationLevel.ReadCommitted }, TransactionScopeAsyncFlowOption.Enabled ); ``` And two IDocumentStore seessions in this TransactionScope: `var session =...

I was a bit irritated, comming from an EF background, where index creation for multiple columns works by supplying an anonymous type. Defining an index in Marten like that leads...

How to return a collection of a strongly-typed class with a nested class, like below? ```C# sess.Query().Select(user => new UserViewDto { Id = user.Id, Contact = new ContactReference { Id...

linq