mnr9917

Results 1 issues of mnr9917

I have a map where I have 5 fields that are optional, but needs to be validated is they are not empty. ```cs Map(m => m.mail1).Name("mail1").Optional().Validate(x => Regex.IsMatch(x.Field, @"regex...", RegexOptions.IgnoreCase));...