Is there anyway on the DropdownDataGrid to set a display expression or template instead of a single property. Something like below where we can still have the dropdown list display as a grid but have the value that gets selected be formatted with multiple fields. For example see ValueExpression in MatBlazor SelectItem MatBlazor - Material Design components for Blazor. The example below does not work it seems like the template overrides the column definitions. The only way I have found to get around this is to override ToString on the bound object which is less than ideal. Thanks for your help.
E.g.
<RadzenDropDownDataGrid AllowFiltering="true" FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" AllowClear="true"
@bind-Value="value" Placeholder="Select..." Data=@customers TextProperty="CompanyName" ValueProperty="CustomerID"
Change=@(args => OnChange(args, "DropDownDataGrid with placeholder")) Class="w-100">
<Template>
Company: @((context as Customer).CompanyName) - @((context as Customer).CustomerID)
</Template>
<Columns>
<RadzenDropDownDataGridColumn Property="CustomerID" Title="Customer ID" />
<RadzenDropDownDataGridColumn Property="CompanyName" Title="Company Name" />
</Columns>
</RadzenDropDownDataGrid>