StringLength无最大限制

发布于 2024-11-02 07:55:25 字数 141 浏览 0 评论 0原文

我想在我的 asp.net MVC3 模型类中使用字符串长度数据注释。我发现我必须给出最大长度。我不能只给出最小长度来确保输入至少 5 个字符吗?

[StringLength(10,MinimumLength = 5)]

请建​​议。

I want to use String length data annotation in my asp.net MVC3 model class. I see that I must give the maximumlength. Cant I just give the Minimumlength to make sure that there are atleaset 5 characters entered ?

[StringLength(10, MinimumLength = 5)]

Please suggest.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无人问我粥可暖 2024-11-09 07:55:25

实体框架中字符串的标准最大长度是 4000。这是相当长的,但如果它不满足您的需求,您始终可以将最大长度设置为数据库中相应列的大小。

如果您真的不在乎,另一种选择是使用 int.MaxValue 作为最大长度。

A standard maximum length for a string in Entity Framework is 4000. That is reasonably long, but if it doesn't suit your needs you could always set the maximum length to the size of the corresponding column in the database.

If your really don't care, another option is using int.MaxValue as de maximum length.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文