gpt4 book ai didi

c# - DataAnnotations [Phone] 属性

转载 作者:可可西里 更新时间:2023-11-01 07:44:44 27 4
gpt4 key购买 nike

[电话] 属性的默认有效格式是什么?数据表中phone列为navrchar(16)如果我输入电话号码,如 1112223333,我会收到“字段不是有效电话号码”。如果我输入 01112223333,我会得到“值‘11112223333’无效。”

另外,如何覆盖它?我知道我可以做这样的事情,但这是这种情况下的最佳做法吗?

[RegularExpression(@"((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}",ErrorMessage="Invalid Phone Number!")]

相关代码:

    [Required]
[Phone]
public string Phone { get; set; }

<div class="editor-field">
@Html.EditorFor(model => model.Phone)
@Html.ValidationMessageFor(model => model.Phone)
</div>

更新我猜想当我将电话列从 int 更改为 navrchar 时存在映射问题。更新模型还不够,所以我不得不使用表映射手动更改值。

Error 2019: Member Mapping specified is not valid. The type 'Edm.Int32[Nullable=False,DefaultValue=]' of member 'Phone' in type 'UserDBModel.UserProfile' is not compatible with 'SqlServerCe.nvarchar[Nullable=False,DefaultValue=,MaxLength=16,Unicode=True,FixedLength=False]' of member 'Phone' in type 'UserDBModel.Store.UserProfile'.

最佳答案

现在可以通过使用 .NET Reference Source (.NET Framework 2.7.2) 浏览源代码轻松找到 PhoneAttribute 的默认正则表达式或 source.dot.net (.NET Core)

它显示(丑陋的)正则表达式被定义为:

private static Regex _regex = new Regex(@"^(\+\s?)?((?<!\+.*)\(\+?\d+([\s\-\.]?\d+)?\)|\d+)([\s\-\.]?(\(\d+([\s\-\.]?\d+)?\)|\d+))*(\s?(x|ext\.?)\s?\d+)?$", RegexOptions.Compiled | RegexOptions.IgnoreCase | RegexOptions.ExplicitCapture);

这回答了您的直接问题,但是否有帮助还有待观察。也许这将是创建您自己的修改后的电话号码正则表达式的良好基础。

Sample Regex Matches

关于c# - DataAnnotations [Phone] 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19595135/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com