Avoid spaces in user names
[TODO] fix identity config
This commit is contained in:
parent
105f8c70c9
commit
3700590cb7
7 changed files with 33 additions and 18 deletions
|
|
@ -7,11 +7,14 @@ namespace Yavsc.Attributes.Validation
|
|||
public class YaRegularExpression : System.ComponentModel.DataAnnotations.RegularExpressionAttribute {
|
||||
public YaRegularExpression(string pattern): base (pattern)
|
||||
{
|
||||
this.ErrorMessage = pattern;
|
||||
this.ErrorMessage = "RegularExpression: "+ pattern;
|
||||
|
||||
}
|
||||
|
||||
public override string FormatErrorMessage(string name)
|
||||
{
|
||||
if (ErrorMessageResourceType==null || string.IsNullOrEmpty(ErrorMessageResourceName))
|
||||
return ErrorMessage;
|
||||
var prop = this.ErrorMessageResourceType.GetProperty(ErrorMessageResourceName);
|
||||
return (string) prop.GetValue(null, BindingFlags.Static, null, null, System.Globalization.CultureInfo.CurrentUICulture);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue