I have the following model:
class User{ [Display(Name = "Display Name")] public string Name { get; set; }}In standard Razor I would do something like the following to get the "Display Name":
<label asp-for="Model.Name"></label>but that doesn't seem to work in Blazor. Does anyone know how to get the display name in a Blazor page without using reflection?