入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

Part 80 - mvc 中的 StringLength 属性

创建时间:2016-11-10 投稿人: 浏览次数:822

用法很简单,具体示例如下:

StringLength attribute is present in System.ComponentModel.DataAnnotations namespace and is used to enforce minimum and maximum length of characters that are allowed in a data field. Let"s understand this with an example. 

We will be using table tblEmployee for this demo. 

Create table tblEmployee
(
 Id int primary key identity(1,1),
 Name nvarchar(50),
 Email nvarchar(50),
 Age int,
 Gender nvarchar(50)
)

Insert into tblEmployee values("Sara Nan", "Sara.Nani@test.com", 30, "Female")
Insert into tblEmployee values("James Histo", "James.Histo@test.com", 33, "Male" )
Insert into tblEmployee values("Mary Jane", "Mary.Jane@test.com", 28, "Female" )
Insert into tblEmployee values("Paul Sensit", "Paul.Sensit@test.com", 29, "Male" )
Generate ADO.NET entity data model for table tblEmployee. Change the entity name from tblEmployee to Employee. Save and build the project.

Right click on the "Controllers" folder and select Add - Controller. Set 
Name = HomeController
Template = MVC controller with read/write actions and views, using Entity Framework
Model class = Employee(MVCDemo.Models)
Data Context Class = EmployeeContext(MVCDemo.Models)
Views = Razor

To validate data, use validation attributes that are found in System.ComponentModel.DataAnnotations namespace. It is not a good idea, to add these validation attributes to the properties of auto-generated "Employee" class, as our changes will be lost, if the class is auto-generated again.

So, let"s create another partial "Employee" class, and decorate that class with the validation attributes.  Right click on the "Models" folder and add Employee.cs class file. Copy and paste the following code. 
using System.ComponentModel.DataAnnotations;
namespace MVCDemo.Models
{
    [MetadataType(typeof(EmployeeMetaData))]
    public partial class Employee
    {
    }

    public class EmployeeMetaData
    {
        <span style="background-color: rgb(255, 255, 102);">[StringLength(10, MinimumLength = 5)]
</span>        [Required]
        public string Name { get; set; }
    }
}
Notice that, we have decorated "Name" property with "StringLength" attribute and specified Minimum and Maximum length properties. We also used [Required] attribute. So, at this point Name property is required and should be between 5 and 10 characters.
Points to remember:
1. [StringLength] attribute is present in System.ComponentModel.DataAnnotations namespace.
2. [StringLength] attribute verifies that a string is of certain length, but does not enforce that the property is REQUIRED. If you want to enforce that the property is required use [Required] attribute.


声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像