You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What do you mean by "components need the same API change"? I understand that related properties should be also long, but do you want to also change similar properties in other "listable" components?
What is even motivation behind this change? Is it just the need to suport more then int.MaxValue rows/items?
What is even motivation behind this change? Is it just the need to suport more then int.MaxValue rows/items?
To support larger datasets. Some organizations could have billions of data, and int could not support it. This change should not be much of a breaking change, and the benefits are many.
Current
[Parameter] public int? TotalItems { get => paginationContext.TotalItems; set => paginationContext.TotalItems = value; }
New
[Parameter] public long? TotalItems { get => paginationContext.TotalItems; set => paginationContext.TotalItems = value; }
Also see if other components need the same API change.
The text was updated successfully, but these errors were encountered: