We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0494423 commit 73cc017Copy full SHA for 73cc017
demos/TodoSQLite/Views/TodoListPage.xaml.cs
@@ -23,7 +23,7 @@ protected override async void OnAppearing()
23
{
24
base.OnAppearing();
25
26
- await database.Db.Watch("select * from todos", null, new WatchHandler<TodoItem>
+ await database.Db.Watch("select * from todos where list_id = ?", [selectedList.ID], new WatchHandler<TodoItem>
27
28
OnResult = (results) =>
29
0 commit comments