I'm new to .Net programming. I'm doing an ant blazor project. I have a table and I want to filter and sort rows. According to documentation, it can be done by adding Filterable
(for filtering) and Sortable
(for sorting) attributes to the column like this
<Column TData="Guid" @bind-Field="context.Id" Sortable Filterable />
But it gives me the following error
InvalidOperationException: Object of type 'AntDesign.Column`1[[System.Int32, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]' does not have a property matching the name 'Sortable'.
Any Solution ??