'宣言
Public Overloads Function ProgressiveLoading(Of TKey)( _ ByVal sortKeySelector As System.Linq.Expressions.Expression(Of Func(Of T,TKey)), _ ByVal ascending As System.Boolean, _ ByVal loadSize As System.Integer _ ) As ProgressiveView(Of T)
public ProgressiveView<T> ProgressiveLoading<TKey>( System.Linq.Expressions.Expression<Func<T,TKey>> sortKeySelector, System.bool ascending, System.int loadSize )
パラメータ
- sortKeySelector
- ソートキーを指定する関数。
- ascending
- ソートを昇順で行うかどうかを示す boolean 値(false の場合は降順)。
- loadSize
- ページのサイズ。
型パラメータ
- TKey
- ソートキーの型。
戻り値の型
ソースビューと同じエンティティのロードをプログレッシブに行う クライアントビュー。