From c25456de34c5cb39d0b9451ace7a6c20240ef6f8 Mon Sep 17 00:00:00 2001 From: Chris Whellams Date: Fri, 18 Oct 2024 18:22:09 +0300 Subject: [PATCH] Added tip to remind devs to start the Async Daemon when using async projections, this is not mentioned until later in the docs and canbe confusing --- docs/events/projections/aggregate-projections.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/events/projections/aggregate-projections.md b/docs/events/projections/aggregate-projections.md index e5451e8932..37b8b888aa 100644 --- a/docs/events/projections/aggregate-projections.md +++ b/docs/events/projections/aggregate-projections.md @@ -104,6 +104,10 @@ public class TripProjection: SingleStreamProjection And register that projection like this: +::: tip +Remember to start the Async Daemon when using async projections, see [Asynchronous Projections Daemon](/events/projections/async-daemon.html) +::: + ```cs