11 references to Items
Microsoft.AspNetCore.Components.QuickGrid (11)
QuickGrid.razor.cs (11)
26
/// You should supply either <see cref="
Items
"/> or <see cref="ItemsProvider"/>, but not both.
33
/// You should supply either <see cref="
Items
"/> or <see cref="ItemsProvider"/>, but not both.
185
if (
Items
is not null && ItemsProvider is not null)
187
throw new InvalidOperationException($"{nameof(QuickGrid)} requires one of {nameof(
Items
)} or {nameof(ItemsProvider)}, but both were specified.");
191
var _newItemsOrItemsProvider =
Items
?? (object?)ItemsProvider;
196
_asyncQueryExecutor = AsyncQueryExecutorSupplier.GetAsyncQueryExecutor(Services,
Items
);
303
/// (either <see cref="
Items
"/> or <see cref="ItemsProvider"/>).
409
else if (
Items
is not null)
411
var totalItemCount = _asyncQueryExecutor is null ?
Items
.Count() : await _asyncQueryExecutor.CountAsync(
Items
);
412
var result = request.ApplySorting(
Items
).Skip(request.StartIndex);