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

Currently Marten uses the event type inferred from the event record/class to know the CLR type of the event when deserializing. The default strategy of inferring the type (stored in...

I have a class called Facility that I push using `MartenStore.BulkInsertAsync` method. The scheme is defined using soft delete as follow: ``` services.AddMarten(options => { options.Connection(connectionString); options.Logger(new ConsoleMartenLogger()); options.UseDefaultSerialization( serializerType:...

*Jeremy* has sprinted ahead in development and out paced documentation updates. This is tracking work that either hasn't been doc'd, or docs that could really use a refresh/review before 7.0...

docs
7.x

Hey I am new to this community and keen to contribute. I run a windows machine and am using the powershell build script. I cloned the master branch and following...

Using the default configuration (that is, with no preregistered `NpgsqlDataSource`), the logging from `Npgsql` is gone. It appears the internally managed `NpgsqlDataSource` is not being configured with the ILoggerFactory. **no...

This aims to add some documentation to the internals of the compiled query subsystem so that people working on it have a better understanding of what is going on. Still...

After bump to 7.0-beta.3 we've started getting a lot of unstable tests, failing on connections pretty randomly. Setup: Azure Devops ubuntu-latest agent. PGSQL 13.10 on docker running on this agent....

Hi Team, I have scenario where 2 document types are having same alias(or classnames), but they belongs to different schemas like below - [Same database] **First document type -:** ```...

BulkInsert() currently consumes a IReadOnlyCollection. I think, it would be nice to allow IEnumerable too and even IAsyncEnumerable. This would allow to "stream" a large amount of documents into the...

First implementation version to discuss for: https://github.com/JasperFx/marten/issues/2945 This PR also fixes bug in the previous implementation: Unhelathy state when no events stored and HighWaterMark not present. disclaimer: I may use...