目前我正在为我的 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#但效果是一样的。
有没有机会将枚举(或其他编译值)传递给我的属性?
谢谢