Blazor Data Grid

Hello :wave:.. How i can make a Related property in Blazor Data Grid Column.. i'am just able to render an List but i don't know how to render Related class property in it
Thank you

If the data source is related then when you create the datagrid you can show the related data by entering ${data. In the template field for the column. You should see the related data autocomplete and you can select the relevant field.

Yes the source data has related entites .. thank you a lot will try it .. can you please clarify more ${data ?

${data} is Radzen IDE specific syntax. You can check the Template demo to see how to display related data:

        <RadzenDataGridColumn TItem="Order" Property="Employee.LastName" Title="Employee">
            <Template Context="order">
                <h5>@order.Employee?.FirstName @order.Employee?.LastName</h5>
            </Template>
        </RadzenDataGridColumn>

Thank you so much .. worked good