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 ecb5ee3 commit 7584861Copy full SHA for 7584861
SQLiteSharp.Tests/ReadMeTest.cs
@@ -53,9 +53,9 @@ public void Test2() {
53
Sweet = new Sweet("orange"),
54
});
55
56
- // Find one item in the table matching a predicate
57
- //SweetWrapper? Sweet = Connection.Table<SweetWrapper>().FirstOrDefault();
58
- //Assert.NotNull(Sweet);
+ // Find the first item in the table
+ SweetWrapper? Sweet = Sweets.FindAll().FirstOrDefault();
+ Assert.NotNull(Sweet);
59
}
60
61
0 commit comments