0

创建此对象后

ClassName obj = new ClassName
{
  Currency = "eur",
  DateStart = DateTime.Now.AddDays(-1),
  DateEnd = DateTime.Now.AddDays(-1)
};

并试图验证它

var validationResults = Validation.Validate<ClassName>(obj);

我看到了这个错误,但我不知道在哪里寻找和解决这个问题:

An unhandled exception of type 'System.ArgumentException' occurred in
Microsoft.Practices.EnterpriseLibrary.Validation.dll

Additional information: Object must be of type Int32.

任何帮助表示赞赏。

谢谢。

编辑

这里似乎是问题:

[RangeValidator(0f, RangeBoundaryType.Inclusive, 0f, RangeBoundaryType.Ignore, MessageTemplate = "...")]
public virtual double Price
{
    get;
    set;
}
4

1 回答 1

0

您必须使用属性修饰了某些字段或ClassName属性Validator。我假设某些属性不适用,或者您错过了一些参数...

于 2012-05-16T17:36:46.577 回答