I currently have a validation class with a method which validates that a string is not null (and logs the info, but that's not the concern here)
protected void ValidateStringNotEmpty(string propertyName, string value)
{
if (string.IsNullOrWhiteSpace(value))
{
ValidationErrors.Add($"Property [{propertyName}] must be filled");
}
}
which is called using
ValidateStringNotEmpty(nameof(Name), Name);
Is there an easy (and optimized) way to prevent the need to pass the first argument nameof(property)
?
I saw solutions using the stacktrace to trace the call back, but it does not seem to be a great solution...
EDIT: What I'm really trying to do is see if something exists to do this (removing the need to pass the name of the argument). I know the pragmatic solution is the one I already use, and this is not a problem.