Eventuous.Projections.MongoDB 0.8.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package Eventuous.Projections.MongoDB --version 0.8.2
NuGet\Install-Package Eventuous.Projections.MongoDB -Version 0.8.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Eventuous.Projections.MongoDB" Version="0.8.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Eventuous.Projections.MongoDB --version 0.8.2
#r "nuget: Eventuous.Projections.MongoDB, 0.8.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Eventuous.Projections.MongoDB as a Cake Addin
#addin nuget:?package=Eventuous.Projections.MongoDB&version=0.8.2

// Install Eventuous.Projections.MongoDB as a Cake Tool
#tool nuget:?package=Eventuous.Projections.MongoDB&version=0.8.2

Eventuous MongoDB projections

This package adds MongoDB projections to applications built with Eventuous.

There are two main components provided by this package:

  • MongoCheckpointStore, implements ICheckpointStore
  • MongoProjection, implements IEventHandler

Using checkpoint store

You can register MongoCheckpointStore so it will be used by all subscriptions that need to store checkpoints (normally, EventStoreDB catch-up subscriptions).

services.AddSingleton<ICheckpointStore, MongoCheckpointStore>();

It will add a checkpoint collection to your Mongo database. Each subscription will have its own checkpoint document. The document id would be the subscription id. Make sure to use unique subscription ids across different applications if they use the same Mongo database.

Using projections

Create your own projection class that inherits MongoProjection<T> abstract class. Here, T is the document type, which must be a record. Your document type should inherit from ProjectedDocument record.

Use the On<TEvent> function to register event projection handlers:

public class ProjectWithTasksProjection : MongoProjection<ProjectWithTasks> {
    public ProjectWithTasksProjection(
        IMongoDatabase  database,
        ILoggerFactory? loggerFactory
    ) : base(database, QuerySubscription.Id, loggerFactory) { 
        On<V1.ProjectRegistered>(
            evt => evt.ProjectId, 
            (evt, update) => update.SetOnInsert(x => x.ProjectName, evt.Name)
        );
        On<V1.TaskCreated>(
            evt => evt.ProjectId,
            (evt, update) => update.AddToSet(
                x => x.Tasks,
                new ProjectTaskRecord(evt.TaskId, evt.Description)
            )
        );
    }
}

There's an overload for On<TEvent> that gives you direct access to the consume context, so you can have more advanced operations.

On<V1.ProjectRegistered>(ctx => { ... });

The function provided as an argument for On in this case needs to return ValueTask<Operation<T>>. To make things easier, we provide a function called UpdateOperationTask.

The UpdateOperationTask function has two overloads. The one used in the example allows passing the document id as the first argument. Another overload allows specifying a custom filter as (filter, evt) => filter.Eq(x => x.Field == evt.Value).

You can also use the UpdateOperation, which allows you to perform asynchronous operations inside the update function.

There is also a handler registration function for building updates asynchronously called OnAsync, which works similar t On:

OnAsync<V1.ProjectRegistered>(
    evt => evt.ProjectId, 
    async (evt, update) => update.SetOnInsert(
        x => x.ProjectName, 
        await getExternalData(evt.Name)
    )
);

You also have an option of not using pre-registered typed handlers by overriding the GetUpdate function. By default it returns NoOp, so if you override it, don't call base.GetUpdate. Eventuous will only call GetUpdate if there's no registered handler for a received event.

The GetUpdate function must return an instance of the Operation<T> record wrapped in ValueTask. UpdateOperation and UpdateOperationTask return ValueTask<UpdateOperation<T>>. You can use one of the supplied record types:

  • UpdateOperation<T> - includes a filter and an update operation
  • CollectionOperation<T> - allows executing any operation on the collection
  • OtherOperation<T> - allows executing anything as it will be just awaited
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Eventuous.Projections.MongoDB:

Package Downloads
Eventuous.Connector.EsdbMongo

Eventuous connector between EventStoreDB and other things

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.15.0-beta.10 389 2/11/2024
0.15.0-beta.8 453 11/18/2023
0.15.0-beta.7 57 11/17/2023
0.15.0-beta.6 370 10/4/2023
0.15.0-beta.5 2,950 8/28/2023
0.15.0-beta.4 279 8/22/2023
0.15.0-beta.3 59 8/21/2023
0.15.0-beta.2 67 8/21/2023
0.15.0-beta.1 247 8/21/2023
0.14.0 11,250 2/10/2023
0.13.4-alpha.0.1 101 2/10/2023
0.13.3 817 2/1/2023
0.13.2 265 2/1/2023
0.13.1 1,344 1/14/2023
0.13.0 710 1/10/2023
0.12.0 702 10/6/2022
0.11.4 366 9/30/2022
0.11.3 408 9/27/2022
0.11.2 502 9/23/2022
0.11.1 409 9/23/2022
0.11.0 400 9/20/2022
0.10.6 475 9/9/2022
0.10.5 430 8/25/2022
0.10.4 382 8/22/2022
0.10.3 392 8/21/2022
0.10.2 1,525 7/20/2022
0.10.1 422 7/20/2022
0.10.0 426 7/17/2022
0.9.1 432 6/24/2022
0.9.0 421 6/15/2022
0.8.4 460 5/18/2022
0.8.3 473 5/11/2022
0.8.2 403 5/11/2022
0.8.1 462 5/8/2022
0.8.0 415 4/25/2022
0.7.1 483 4/21/2022
0.7.0 429 4/13/2022
0.6.2 412 3/28/2022
0.6.1 415 3/11/2022
0.6.0 1,198 2/21/2022
0.6.0-rc.8 232 11/27/2021
0.6.0-rc.7 2,413 11/25/2021
0.6.0-rc.6 3,263 11/25/2021
0.6.0-rc.5 2,988 11/25/2021
0.6.0-rc.4 4,925 11/24/2021
0.6.0-rc.3 4,838 11/23/2021
0.6.0-rc.2 1,089 11/20/2021
0.6.0-rc.1 155 11/19/2021
0.5.15 5,057 10/12/2021
0.5.14 773 10/10/2021
0.5.13 287 10/10/2021
0.5.12 338 10/10/2021
0.5.11 350 10/10/2021
0.5.10 356 10/10/2021
0.5.9 494 10/9/2021
0.5.8 302 10/9/2021
0.5.7 299 10/9/2021
0.5.6 298 10/9/2021
0.5.5 338 10/9/2021
0.5.4 364 10/9/2021
0.5.3 348 10/9/2021
0.5.2 403 10/9/2021
0.5.1 328 10/6/2021
0.5.0 398 10/5/2021
0.4.7 850 8/20/2021
0.4.6 415 8/6/2021
0.4.5 695 6/4/2021
0.4.4 1,127 5/25/2021
0.4.3 324 5/24/2021
0.4.2 341 5/24/2021
0.4.1 396 5/21/2021
0.4.0 357 5/21/2021
0.3.1 351 5/24/2021
0.3.0 311 5/12/2021
0.2.0 365 4/27/2021
0.1.1 360 4/9/2021
0.1.1-alpha.0.9 159 4/8/2021
0.1.1-alpha.0.7 156 4/8/2021
0.1.1-alpha.0.6 158 4/8/2021
0.1.1-alpha.0.5 144 3/29/2021
0.1.0 355 3/25/2021
0.0.0-alpha.0.41 135 3/24/2021
0.0.0-alpha.0.31 169 3/24/2021
0.0.0-alpha.0.22 177 3/24/2021
0.0.0-alpha.0.21 186 3/23/2021
0.0.0-alpha.0.20 189 3/23/2021
0.0.0-alpha.0.19 189 3/23/2021
0.0.0-alpha.0.18 138 3/17/2021
0.0.0-alpha.0.17 134 3/17/2021
0.0.0-alpha.0.16 134 3/17/2021
0.0.0-alpha.0.15 145 3/17/2021
0.0.0-alpha.0.14 147 3/17/2021
0.0.0-alpha.0.13 166 3/16/2021
0.0.0-alpha.0.12 173 3/10/2021
0.0.0-alpha.0.11 205 3/10/2021
0.0.0-alpha.0.10 204 3/10/2021
0.0.0-alpha.0.9 210 3/8/2021
0.0.0-alpha.0.8 149 3/8/2021