public static Option <string> WhereNotNullOrWhiteSpace(this Option <string> value) { return(value.Where(s => !string.IsNullOrWhiteSpace(s))); }
public static Option <string> WhereNotNullOrEmpty(this Option <string> value) { return(value.Where(s => !string.IsNullOrEmpty(s))); }