mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
26d880f8ed
* fix(module: table): optimized query API for EF * fix table ReloadData() can't invoke OnChange
25 lines
792 B
C#
25 lines
792 B
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AntDesign.TableModels
|
|
{
|
|
public static class QueryableExtensions
|
|
{
|
|
public static IQueryable<TItem> ExecuteTableQuery<TItem>(this IQueryable<TItem> source, QueryModel<TItem> queryModel)
|
|
{
|
|
return queryModel.ExecuteQuery(source);
|
|
}
|
|
|
|
public static IQueryable<TItem> CurrentPagedRecords<TItem>(this IQueryable<TItem> source, QueryModel<TItem> queryModel)
|
|
{
|
|
return queryModel.CurrentPagedRecords(source);
|
|
}
|
|
}
|
|
}
|