From 2ba746ecd4a6e02c29796d0a9dfcb015ae9fa125 Mon Sep 17 00:00:00 2001 From: rekhoff Date: Mon, 27 Jan 2025 15:27:32 -0800 Subject: [PATCH] Changed subscript to SubscribeToAllTables Missed updating the HandleConnect from `Subscribe("SELECT * FROM *"` to `SubscribeToAllTables()` in the updated code block on page 3. --- docs/unity/part-3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/unity/part-3.md b/docs/unity/part-3.md index 1bfbc51e..ecd1990a 100644 --- a/docs/unity/part-3.md +++ b/docs/unity/part-3.md @@ -1035,7 +1035,7 @@ Next lets add some callbacks when rows change in the database. Modify the `Handl // Request all tables Conn.SubscriptionBuilder() .OnApplied(HandleSubscriptionApplied) - .Subscribe("SELECT * FROM *"); + .SubscribeToAllTables(); } ```