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 a46e51d commit 49dd426Copy full SHA for 49dd426
src/BootstrapBlazor.Shared/Components/Samples/Table/TablesSearch.razor.cs
@@ -148,8 +148,7 @@ private Task<QueryData<Foo>> OnQueryAsync(QueryPageOptions options)
148
{
149
// 使用内置扩展方法 ToFilter 获得过滤条件
150
// 目前 ToFilterFunc 无法解决大小写敏感问题
151
- // var items = Items.Where(options.ToFilterFunc<Foo>());
152
- IEnumerable<Foo> items = Items;
+ var items = Items.Where(options.ToFilterFunc<Foo>());
153
if (!string.IsNullOrEmpty(options.SearchText))
154
155
// 使用 Linq 处理
0 commit comments