I believe this is pretty simple, I just can't seem to find the right way to show the display name for an item within a list within my model.
My simplified model:
public class PersonViewModel
{
public long ID { get; set; }
private List<PersonNameViewModel> names = new List<PersonNameViewModel>();
[Display(Name = "Names")]
public List<PersonNameViewModel> Names { get { return names; } set { names = value; } }
}
and Names:
public class PersonNameViewModel
{
public long ID { get; set; }
[Display(Name = "Set Primary")]
public bool IsPrimary { get; set; }
[Display(Name = "Full Name")]
public string FullName { get; set; }
}
Now I'd like to make a table to show all the names for a person, and get the DisplayNameFor FullName. Obviously,
@Html.DisplayNameFor(model => model.Names.FullName);
wouldn't work, and
@Html.DisplayNameFor(model => model.Names[0].FullName);
will break if there are no names. Is there a 'best way' to obtain the display name here?
There is another way for do it, and i guess that is more clear:
And then, in the view:
I like T-moty's solution. I needed a solution using generics so my solution is essentially this:
Using this in the view is the same as his example. I create a single instance of an empty object so I'm not creating a new instance every time I reference Default.
Note, the new() constraint is needed in order to call new T(). If your model class doesn't have a default contructor, or you need to add arguments to the constructor you can use this:
The view will have an @model line like:
This actually works, even without items in the list:
It works because MVC parses the expression instead of actually executing it. This lets it find that right property and attribute without needing there to be an element in the list.
It's worth noting that the parameter (
model
above) doesn't even need to be used. This works, too:As does this: