github radzenhq/radzen-blazor v11.5.0
11.5.0

5 hours ago

11.5.0 - 2026-09-26

Improvements

  • ODataQuery builds OData queries from EF Core-style lambdas instead of query strings: new ODataQuery<Order>().Where(o => o.Freight > 10).Include(o => o.OrderDetails).ThenInclude(d => d.Product).OrderByDescending(o => o.OrderDate) sends $filter=Freight gt 10, $expand=OrderDetails($expand=Product) and $orderby=OrderDate desc, so a misspelled property is a compile error instead of a 400. It covers filters with nested Any/All, filtered includes, paging and count, and GroupBy(...).Select(...) aggregates ($apply). uri.GetODataUri(query, args) merges a RadzenDataGrid's LoadDataArgs.

Fixes

  • Chart no longer writes NaN into its axis lines, tick labels, grid lines and clip path when a string category axis has no categories. A chart rendered before its data arrived, which is the first render of any chart whose data loads in OnInitializedAsync, logged an "Expected number" error to the browser console for every axis line, tick label and grid line. Regression from 11.0.0.
  • DataGrid OData filters of DateOnly columns write the year with four digits. The value was formatted with yyy-MM-dd, which wrote years before 1000 with three digits.

Don't miss a new radzen-blazor release

NewReleases is sending notifications on new releases.