Unplanned
Last Updated: 12 Jan 2023 09:19 by Peter
Peter
Created on: 12 Jan 2023 09:19
Category: Grid
Type: Feature Request
1
Bind Grid to ImmutableArray

Hello,

Please consider Grid data binding support for ImmutableArray. Currently, it crashes when the Grid tries to retrieve the total items count at:

Data.AsQueryable().Count();

Immutable*<T> classes are popular in state libraries.

Currently, the possible workarounds are:

  • Execute .ToArray() on the ImmutableArray and bind the Grid to the new array.
  • Bind the Grid to IReadOnlyCollection.
0 comments