I have a IList<Tag> as a property named Tags in my model. How do I name the files for display and editor templates to respect it when I call DisplayFor or EditorFor? Usage:
Model
class MyModel
{
IList<Tag> Tags { get; protected set; }
}
View
<%= Html.EditorFor(t => t.Tags) %>
edit I know I can do this, but its not what I want to do.
<%= Html.EditorFor(t => t.Tags, "TagList") %>