我正在实现自定义数据注释,并且在主模型中它可以正常工作,但是当我将数据注释放在部分元数据中时,验证没有找到此数据注释。
我的代码如下:
public partial class register
{
public int id { get; set; }
public long idPerson { get; set; }
public string other { get; set; }
}
public partial class register_Metadata
{
[MyAttributeOne("val1")]
public int id { get; set; }
[MyAttributeOne("val1")]
public long idPerson { get; set; }
public string other { get; set; }
}
这两个类的命名空间是相同的。
另一方面,我有一个连接两个部分类的类。
[MetadataType(typeof( register_Metadata))]
public partial class register
{
}
当我使用自定义元数据验证字段时,propierties函数始终具有0结果
protected override ValidationResult IsValid(object value, ValidationContext validationContext)
{
var properties = this.GetInvolvedProperties(validationContext.ObjectType);
var numberOfRequiredFields = RequireFromGroupAttribute.GetNumberOfRequiredFields(validationContext.ObjectType, this.Selector);
var values = new List<object> { value };
var otherPropertiesValues = properties.Where(p => p.Key.Name != validationContext.MemberName).Select(p => p.Key.GetValue(validationContext.ObjectInstance));
values.AddRange(otherPropertiesValues);
if (values.Count(s => !string.IsNullOrWhiteSpace(Convert.ToString(s))) >= numberOfRequiredFields)
{
return ValidationResult.Success;
}
return new ValidationResult(this.GetErrorMessage(numberOfRequiredFields, properties.Values), new List<string> { validationContext.MemberName });
}
private Dictionary<PropertyInfo, string> GetInvolvedProperties(Type type)
{
return type.GetProperties()
.Where(p => p.IsDefined(typeof(RequireFromGroupFieldAttribute)) &&
p.GetCustomAttribute<RequireFromGroupFieldAttribute>().Selector == this.Selector)
.ToDictionary(p => p, p => p.IsDefined(typeof(DisplayAttribute)) ? p.GetCustomAttribute<DisplayAttribute>().Name : p.Name);
}
我已将数据注释更改为主类,然后在属性函数中我有两个要评估的参数。 但是,当我将它们放入元数据类时,它不起作用。