Home

Awesome

Marten

.NET Transactional Document DB and Event Store on PostgreSQL

Discord Twitter Follow Windows Build Status Linux Build status Nuget Package Nuget

<div align="center"> <img src="https://martendb.io/v3/content/images/banner.png" alt="marten logo" width="70%"> </div>

The Marten library provides .NET developers with the ability to use the proven PostgreSQL database engine and its fantastic JSON support as a fully fledged document database. The Marten team believes that a document database has far reaching benefits for developer productivity over relational databases with or without an ORM tool.

Marten also provides .NET developers with an ACID-compliant event store with user-defined projections against event streams.

Access docs here and v3.x docs here.

Support Plans

<div align="center"> <img src="https://www.jasperfx.net/wp-content/uploads/2023/07/logo-alt-min.png" alt="JasperFx logo" width="70%"> </div>

While Marten is open source, JasperFx Software offers paid support and consulting contracts for Marten.

Help us keep working on this project 💚

Become a Sponsor on GitHub by sponsoring monthly or one time.

Past Sponsors

<p align="left"> <a href="https://aws.amazon.com/dotnet" target="_blank" rel="noopener noreferrer"> <picture> <source srcset="https://martendb.io/dotnet-aws.png" media="(prefers-color-scheme: dark)" height="72px" alt=".NET on AWS" /> <img src="https://martendb.io/dotnet-aws.png" height="72px" alt=".NET on AWS" /> </picture> </a> </p>

Working with the Code

Before getting started you will need the following in your environment:

1. .NET SDK 8.0+

Available here

2. PostgreSQL 12 or above database

The fastest possible way to develop with Marten is to run PostgreSQL in a Docker container. Assuming that you have Docker running on your local box, type: docker-compose up or dotnet run --framework net6.0 -- init-db at the command line to spin up a Postgresql database withThe default Marten test configuration tries to find this database if no PostgreSQL database connection string is explicitly configured following the steps below:

PLV8

If you'd like to use Patching Api you need to enable the PLV8 extension inside of PostgreSQL for running JavaScript stored procedures for the nascent projection support.

Ensure the following:

Help with PSQL/PLV8

Test Config Customization

Some of our tests are run against a particular PostgreSQL version. If you'd like to run different database versions, you can do it by setting POSTGRES_IMAGE env variables, for instance:

POSTGRES_IMAGE=postgres:15.3-alpine docker compose up

Tests explorer should be able to detect database version automatically, but if it's not able to do it, you can enforce it by setting postgresql_version to a specific one (e.g.)

postgresql_version=15.3

Once you have the codebase and the connection string file, run the build command or use the dotnet CLI to restore and build the solution.

You are now ready to contribute to Marten.

See more in Contribution Guidelines.

Tooling

Build Commands

DescriptionWindows CommandlinePowerShellLinux ShellDotNet CLI
Run restore, build and testbuild.cmdbuild.ps1build.shdotnet build src\Marten.sln
Run all tests including mocha testsbuild.cmd testbuild.ps1 testbuild.sh testdotnet run --project build/build.csproj -- test
Run just mocha testsbuild.cmd mochabuild.ps1 mochabuild.sh mochadotnet run --project build/build.csproj -- mocha
Run StoryTeller testsbuild.cmd storytellerbuild.ps1 storytellerbuild.sh storytellerdotnet run --project build/build.csproj -- storyteller
Open StoryTeller editorbuild.cmd open_stbuild.ps1 open_stbuild.sh open_stdotnet run --project build/build.csproj -- open_st
Run docs website locallybuild.cmd docsbuild.ps1 docsbuild.sh docsdotnet run --project build/build.csproj -- docs
Publish docsbuild.cmd publish-docsbuild.ps1 publish-docsbuild.sh publish-docsdotnet run --project build/build.csproj -- publish-docs
Run benchmarksbuild.cmd benchmarksbuild.ps1 benchmarksbuild.sh benchmarksdotnet run --project build/build.csproj -- benchmarks

Note: You should have a running Postgres instance while running unit tests or StoryTeller tests.

xUnit.Net Specs

The tests for the main library are now broken into three testing projects:

  1. CoreTests -- basic services like retries, schema management basics
  2. DocumentDbTests -- anything specific to the document database features of Marten
  3. EventSourcingTests -- anything specific to the event sourcing features of Marten

To aid in integration testing, Marten.Testing has a couple reusable base classes that can be use to make integration testing through Postgresql be more efficient and allow the xUnit.Net tests to run in parallel for better throughput.

Mocha Specs

Refer to the build commands section to look up the commands to run Mocha tests. There is also npm run tdd to run the mocha specifications in a watched mode with growl turned on.

Note: remember to run npm install

Storyteller Specs

Refer to build commands section to look up the commands to open the StoryTeller editor or run the StoryTeller specs.

Current Build Matrix

CI.NETPostgresplv8Serializer
GitHub Actions612.8:white_check_mark:STJ
GitHub Actions615-alpine:x:Newtonsoft
GitHub Actions712.8:white_check_mark:JSON.NET
GitHub Actions7latest:x:STJ
Azure Pipelines812.8:white_check_mark:JSON.NET
Azure Pipelines812.8:white_check_mark:STJ
Azure Pipelines815-alpine:x:STJ
Azure Pipelines8latest:x:Newtonsoft

Documentation

All the documentation is written in Markdown and the docs are published as a static site hosted in Netlify. v4.x and v3.x use different documentation tools hence are detailed below in separate sub-sections.

v4.x and above

VitePress is used as documentation tool. Along with this, MarkdownSnippets is used for adding code snippets to docs from source code and Algolia DocSearch is used for searching the docs via the search box.

The documentation content is the Markdown files in the /docs directory directly under the project root. To run the docs locally use npm run docs with auto-refresh on any changes.

To add code samples/snippets from the tests in docs, follow the steps below:

Use C# named regions to mark a code block as described in the sample below

#region sample_my_snippet
// code sample/snippet
// ...
#endregion

All code snippet identifier starts with sample_ as a convention to clearly identify that the region block corresponds to a sample code/snippet used in docs. Recommend to use snake case for the identifiers with words in lower case.

Use the below to include the code snippet in a docs page

<pre> &#60;!-- snippet: sample_my_snippet --> &#60;!-- endSnippet --> </pre>

Note that when you run the docs locally, the above placeholder block in the Markdown file will get updated inline with the actual code snippet from the source code. Please commit the changes with the auto-generated inline code snippet as-is after you preview the docs page. This helps with easier change tracking when you send PR's.

Few gotchas:

v3.x

stdocs is used as documentation tool. The documentation content is the markdown files in the /documentation directory directly under the project root. Any updates to v3.x docs will need to done in 3.14 branch. To run the documentation website locally with auto-refresh, refer to the build commands section above.

If you wish to insert code samples/snippet to a documentation page from the tests, wrap the code you wish to insert with // SAMPLE: name-of-sample and // ENDSAMPLE. Then to insert that code to the documentation, add <[sample:name-of-sample]>.

Note: content is published to the gh-pages branch of this repository. Refer to build commands section to lookup the command for publishing docs.

License

Copyright © Jeremy D. Miller, Babu Annamalai, Oskar Dudycz, Joona-Pekka Kokko and contributors.

Marten is provided as-is under the MIT license. For more information see LICENSE.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.