получить значение из пользовательского атрибута в шаблоне редактора - PullRequest
10 голосов
/ 30 сентября 2010

на данный момент у меня есть это:

в ViewModel:

[MyCustom(Foo = 23)]
public int CountryId { get; set; }

в шаблоне редактора:

<%= Html.TextBox("", Model) %>

как я могу получить значение (Foo = 23) из моего пользовательского атрибута (MyCustom) в шаблон редактора?

1 Ответ

10 голосов
/ 11 сентября 2014

В шаблоне редактора вы можете получить значение пользовательского атрибута, как показано ниже.

@model int

@{       
    var CustomAttributes = (ViewData.ModelMetadata).ContainerType.GetProperty(ViewData.ModelMetadata.PropertyName).GetCustomAttributes(typeof(MvcApplication7.Models.MyCustomAttribute), false);
    if (CustomAttributes.Length > 0)
    {
        MvcApplication7.Models.MyCustomAttribute CustomAttribute = CustomAttributes[0] as MvcApplication7.Models.MyCustomAttribute;

        //That is how you get the value of foo. You can use it as per need of the editor template.
        @CustomAttribute.Foo   
    }
}
...