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 7232670 commit b185b25Copy full SHA for b185b25
TestWasm/Pages/Home.razor
@@ -134,11 +134,11 @@
134
// || x.Name.Contains("bo", StringComparison.OrdinalIgnoreCase)
135
// ).OrderBy(x => x._Id).Skip(1).AsAsyncEnumerable()).ToListAsync();
136
137
- WhereExample = (manager.Where<Person>(x => x.Name.StartsWith("c", StringComparison.OrdinalIgnoreCase)
+ WhereExample = (await manager.Where<Person>(x => x.Name.StartsWith("c", StringComparison.OrdinalIgnoreCase)
138
|| x.Name.StartsWith("l", StringComparison.OrdinalIgnoreCase)
139
|| x.Name.StartsWith("j", StringComparison.OrdinalIgnoreCase) && x._Age > 35
140
|| x.Name.Contains("bo", StringComparison.OrdinalIgnoreCase)
141
- ).OrderBy(x => x._Id).Skip(1).ToList());
+ ).OrderBy(x => x._Id).Skip(1).ToListAsync());
142
143
144
/*
0 commit comments