1

目前我正在为我的 mvc 应用程序编写自己的 ValidationAttribute。

我有以下 ValidationAttribute 代码。

[AttributeUsage(AttributeTargets.Property | AttributeTargets.Class | AttributeTargets.Parameter, AllowMultiple = false)] 
public class RecordAttribute: ValidationAttribute
{

   public UniqueDataRecordAttribute(string primaryKeyProperty)
   {

   }
}

我将主要属性的字段名称作为字符串传递给我的属性并进行验证。例如:

[RecordAttribute("CustomerID")]
public class CustomerMetaData
{


}

这对我有用,但如果主键的名称发生变化,我会遇到问题。

我创建了一个包含主键属性的枚举。但是当我尝试传递它时,编译器告诉我:

属性参数必须是属性参数类型的常量表达式、typeof 表达式或数组创建表达式

我也尝试过这种方法:Associating enums with strings in C#但效果是一样的。

有没有机会将枚举(或其他编译值)传递给我的属性?

谢谢

4

1 回答 1

0

你想做这样的事情吗?

[RecordAttribute(Keys.CustomerID.ToString())] 
public class CustomerMetaData 
{ 
}

这不起作用,因为 Keys.CustomerID.ToString() 返回的字符串不是常量。

您可以使用静态类的 const 字符串字段来代替枚举吗?

static class Keys {
  public const string CustomerID = "CustomerID";
}

然后这将起作用:

[RecordAttribute(Keys.CustomerID)] 
public class CustomerMetaData 
{ 
}
于 2012-04-26T07:09:38.943 回答