3

我正在创建一个小型验证框架,我有一个自定义Validation Attribute,可分配给类中的方法和IsValid属性ValidationCore。在IsValid方法内部调用时,我ValidationCore会找到一个调用方方法并将其属性分配给方法。我的自定义Validation属性有一个名为TypeToValidate. 因此,当我找到验证属性时,我会在该类型的类范围内查找任何类型。到目前为止我没有任何问题,但问题是当我想获取我必须验证的属性值时,我没有该类的任何实例来获取该属性值。我不知道我该如何处理这种情况,请帮助我。

这是我的样本:

public class TestClass
{
    public static TestModel Model { get; set; }
    public static ModelValidator ModelState
    {
        get { return new ModelValidator(); }
    }

    [Validate(typeof(TestModel))]
    public static void DoSomething()
    {
        if (ModelState.IsValid)
        {
            // Do something else....
        }
    }
}

编辑:这是我的IsValid财产

    public virtual Boolean IsValid
    {
        get
        {
            // Get IsValid caller method
            var method = GetCallerMethod();

            // Get method attribute
            var Attrib = GetMethodAttribute(typeof(ValidateAttribute), method);

            // Get model to validate inside class scope
            var modelProperty = GetModelToValidateInClassScope(Attrib, method);

            if (modelProperty != null)
            {
                ValidateModel(modelProperty);
            }

            ....
        }
    }

这是ValidateModel方法:

    protected virtual void ValidateModel(PropertyInfo modelProperty)
    {
        // Here I've model property
        // But I can't get its value
        var model = modelProperty.GetValue(null, null);
        var properties = model.GetType().GetProperties(
                        BindingFlags.FlattenHierarchy |
                        BindingFlags.Public |
                        BindingFlags.Instance |
                        BindingFlags.DeclaredOnly);


        foreach (var propertyInfo in properties)
        {
            // Add error to error list
            GetPropertyErrors(model, propertyInfo);
        }
    }

提前致谢。

4

2 回答 2

1

回答实际提出的问题

到目前为止我没有任何问题,但问题是当我想获取我必须验证的属性值时,我没有该类的任何实例来获取该属性值。

如果它是一个静态属性,那很好 - 只需null用作第一个参数:

// First argument is the instance: null as it's a static property
// Second argument is indexer arguments: null as we don't have any
var value = property.GetValue(null, null);

文档中

因为静态属性属于类型,而不是单个对象,所以通过将 null 作为对象参数传递来获取静态属性。

替代方法

如果你只是想TypeToValidate从属性中获取Validate属性,那么你应该有一个属性的实例,你可以直接转换ValidateAttribute和检索属性。

基本上,尚不清楚属性真正进入您想要做的事情的位置。您的属性在方法而不是属性上,并且您的属性没有说明要验证哪些属性...

于 2012-07-14T09:50:42.533 回答
1

您需要一个实例来获取其属性值。看起来您需要修改该方法GetModelToValidateInClassScope,以便它返回模型本身的实例以及 PropertyInfo。

如果这个方法被改变,它看起来像这样(注意新的out参数):

PropertyInfo GetModelToValidateInClassScope(Type attributeType, MethodInfo methodInfo, out object instance)
{
   // same implementation as before ...

   // assign the model to use, 
   // which is likely accessible from somewhere in the is method
   instance = theModelInstanceFromThisMethod;

   // .. or if the property is static, then uncomment the next line:
   // instance = null;

   // same return value as before ...
}

我只是在这里猜测,因为您没有提供此方法的实现。如果GetModelToValidateInClassScope无法访问模型实例,那么您将不得不从其他地方获取它。

获得模型实例后,可以像下面这样使用它。请注意,它ValidateModel已被修改,以便它接受模型实例作为第一个参数。

...   

    // Get model to validate inside class scope 
    object instance;  // <--- will hold the model instance
    var modelProperty = GetModelToValidateInClassScope(Attrib, method, out instance); 

    if (modelProperty != null) 
    { 
        ValidateModel(instance, modelProperty); // <--- make sure to pass the instance along!
    } 

...

protected virtual void ValidateModel(object instance, PropertyInfo modelProperty)         
{         
    // get value of instance property
    var model = modelProperty.GetValue(instance, null);    

    ...

}     
于 2012-07-14T21:08:41.013 回答