Hi,
I have an attribute and i want to load text to the attribute from a resource file.
[IntegerValidation(1, 70, ErrorMessage = Data.Messages.Speed)] private int i_Speed;
But i keep getting "An attribute argument must be a constant expression, typeof expression or array creation expression of an attribute parameter type"
It works perfectly if i add a string instead of Data.Messages.Text, like: [IntegerValidation(1, 70, ErrorMessage = "Invalid max speed")]
Any ideas?