Hi,
I recently updated Blazor to 18.1.0.59 and I'm using the following datagrid to filter records on the server:
On the server I have the following, which returns an error while attemping to filter rows:

Please note that request.Where[0].Operator is always null. Is that normal?
Here's the stack trace if it helps:
at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
at Syncfusion.Blazor.Data.QueryableOperation.PredicateBuilder[T](IQueryable`1 dataSource, List`1 whereFilter, String condition, ParameterExpression paramExpression, Type type)
at Syncfusion.Blazor.Data.QueryableOperation.PredicateBuilder[T](IQueryable`1 dataSource, List`1 whereFilter, String condition, ParameterExpression paramExpression, Type type)
at Syncfusion.Blazor.Data.QueryableOperation.PerformFiltering[T](IQueryable`1 dataSource, List`1 whereFilter, String condition)
at Syncfusion.Blazor.DataOperations.PerformFiltering[T](IEnumerable`1 dataSource, List`1 whereFilter, String condition)
at AssetManager.Blazor.Server.Controllers.AssetsController.GetDmAssets(DataManagerRequest request) in C:\Users\sydne\source\repos\AssetManager.Blazor\AssetManager.Blazor\Server\Controllers\AssetsController.cs:line 50
Please help :)