Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Custom Attributes from Lambda Property Expression

Tags:

I am using ASP.NET MVC 2 Preview 2 and have written a custom HtmlHelper extension method to create a label using an expression. The TModel is from a simple class with properties and the properties may have attributes to define validation requirements. I am trying to find out if a certain attribute exists on the property the expression represents in my label method.

The code for the class and label is:

public class MyViewModel {     [Required]     public string MyProperty { get; set; } }  public static MvcHtmlString Label<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, string label) {     return MvcHtmlString.Create(string.Concat("<label for=\"", expression.GetInputName(), "\">", label, "</label>")); }  public static string GetInputName<TModel, TProperty>(this Expression<Func<TModel, TProperty>> expression) {     return expression.Body.ToString().Substring(expression.Parameters[0].Name.Length + 1); } 

Then I would call the label like this:

Html.Label(x => x.MyProperty, "My Label") 

Is there a way to find out if the property in the expression value passed to the Label method has the Required attribute?

I figured out that doing the following does get me the attribute if it exists, but I am hopeful there is a cleaner way to accomplish this.

public static MvcHtmlString Label<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, string label) {     System.Attribute.GetCustomAttribute(Expression.Property(Expression.Parameter(expression.Parameters[0].Type, expression.GetInputName()), expression.GetInputName()).Member, typeof(RequiredAttribute))      return MvcHtmlString.Create(string.Concat("<label for=\"", expression.GetInputName(), "\">", label, "</label>")); } 
like image 935
Bernd Avatar asked Oct 13 '09 12:10

Bernd


People also ask

How do I find custom attributes?

Right-click on a user, then click Properties. Click the Attribute Editor tab, then confirm that the custom attribute you created is listed in the "Attribute" column (e.g., LastPassK1).

How do I add custom attributes to my framework?

AttributeUsage has a named parameter, AllowMultiple , with which you can make a custom attribute single-use or multiuse. In the following code example, a multiuse attribute is created. In the following code example, multiple attributes of the same type are applied to a class. [Author("P.

How do I create a custom attribute in .NET core?

Declaring Custom AttributesWe can define an attribute by creating a class. This class should inherit from the Attribute class. Microsoft recommends appending the 'Attribute' suffix to the end of the class's name. After that, each property of our derived class will be a parameter of the desired data type.


2 Answers

Your expression parsing logic could use some work. Rather than deal with the actual types, you are converting to strings.

Here is a set of extension methods that you might use instead. The first gets the name of the member. The second/third combine to check if the attribute is on the member. GetAttribute will return the requested attribute or null, and the IsRequired just checks for that specific attribute.

public static class ExpressionHelpers {     public static string MemberName<T, V>(this Expression<Func<T, V>> expression)     {         var memberExpression = expression.Body as MemberExpression;         if (memberExpression == null)             throw new InvalidOperationException("Expression must be a member expression");          return memberExpression.Member.Name;     }      public static T GetAttribute<T>(this ICustomAttributeProvider provider)          where T : Attribute     {         var attributes = provider.GetCustomAttributes(typeof(T), true);         return attributes.Length > 0 ? attributes[0] as T : null;     }      public static bool IsRequired<T, V>(this Expression<Func<T, V>> expression)     {         var memberExpression = expression.Body as MemberExpression;         if (memberExpression == null)             throw new InvalidOperationException("Expression must be a member expression");          return memberExpression.Member.GetAttribute<RequiredAttribute>() != null;     } } 

Hopefully this helps you out.

like image 170
Chris Patterson Avatar answered Oct 29 '22 14:10

Chris Patterson


How about this code (from the MVC project on codeplex)

public static bool IsRequired<T, V>(this Expression<Func<T, V>> expression, HtmlHelper<T> htmlHelper)     {         var modelMetadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);         string modelName = htmlHelper.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(ExpressionHelper.GetExpressionText(expression));         FieldValidationMetadata fieldMetadata = ApplyFieldValidationMetadata(htmlHelper, modelMetadata, modelName);         foreach (var item in fieldMetadata.ValidationRules)         {             if (item.ValidationType == "required")                 return true;         }          return false;     }      private static FieldValidationMetadata ApplyFieldValidationMetadata(HtmlHelper htmlHelper, ModelMetadata modelMetadata, string modelName)     {         FormContext formContext = htmlHelper.ViewContext.FormContext;         FieldValidationMetadata fieldMetadata = formContext.GetValidationMetadataForField(modelName, true /* createIfNotFound */);          // write rules to context object         IEnumerable<ModelValidator> validators = ModelValidatorProviders.Providers.GetValidators(modelMetadata, htmlHelper.ViewContext);         foreach (ModelClientValidationRule rule in validators.SelectMany(v => v.GetClientValidationRules()))         {             fieldMetadata.ValidationRules.Add(rule);         }          return fieldMetadata;     } 
like image 42
Ronnie Avatar answered Oct 29 '22 14:10

Ronnie