So let say we have:
<RadzenDataGrid ...>
<Columns>
<RadzenDataGridColumn Context="item" TItem="User" Property="FirstName" ...>
And I want to avoid the error-prone magic string in "Property"
<RadzenDataGrid ...>
<Columns>
<RadzenDataGridColumn Context="item" TItem="User" Property="@(nameof(item.FirstName))" ...>
Which obviously doesn't work because "item" is not accessible in the markup itself.
Is there any workaround?