Is there a way to get rid of the .FirstOrDefault() with the following setup. I love using the yield statement but I want to condense the IsRequired method to the point where I dont have to use .FirstOrDefault().
PlayerValidator
protected override IEnumerable<ValidationResult> Validate(PlayerModel entity, IValidationProvider validationProvider)
{
yield return ValidationResultHelper.IsRequired(entity.Profile.FirstName, "First Name").FirstOrDefault();
if (string.IsNullOrWhiteSpace(entity.Profile.LastName))
yield return new Required("Last Name");
}
ValidatorHelper
public IEnumerable<ValidationResult> IsRequired(string text, string name)
{
if (string.IsNullOrWhiteSpace(text))
yield return new Required(name);
}
nullif theFirstNameis valid? – ta.speot.is Jan 11 at 1:43yield returnvirtuoso, but won't theOrDefaultpart ofFirstOrDefaultgive you anullvalue back if theFirstNameis notnullor whitespace? – ta.speot.is Jan 11 at 1:54IsRequired()returnIEnumerable<>at all if it will only ever return a single value? – Jay Jan 11 at 2:01