Normally, ModelBinding Validation of a class member might be done like this example:
public Class someclass
{
[StringLength(50)]
public string SomeValue { get; set; }
}
SomeValue is limited to 50 characters at a maximum.
Is it possible to have the constant (50) changed to something else at run-time, say, during the construction of each instance of that class, so that it is possible to have varying instances with different StringLength limitations?
If so, how does one do this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…