自定义特性(Attribute)
1.自定义特性
全继承自Attribute基类(使用前要给自定义特性赋予相关特性)
[AttributeUsage(AtrributeTargets.Class|AttributeTargets.Method,AllowMultiple=true,Inherited=true)//AttributeTargets.Class:允许放类上//AllowMultiple:是否允许多个使用(同一个特性)//Inherited:是否允许继承class MyAttribute:Attribute{public MyAtrribute(){}public MyAttribute(String str){}}
2.使用特性
一般放在类、属性、方法。。上方(使用时Attribute可省略)
[My]
[My("name")]
3.查找特性名
自己定义一个类方法用于查找。
public class customtableattribute{static public string GetTableAttribute<T>(T mode) where T:class{ Type type = typeof(T);//获取传入数据类型if (type.IsDefined(typeof(TableAttribute), true))//判断相应特性被使用{var attribute = type.GetCustomAttributes(typeof(TableAttribute), true);//获取TableAttribute特性,true代表允许继承特性的派生类return ((TableAttribute)attribute[0]).TableName;//返回特性名}else {return type.Name;}}}
4.获取相应对象的特性名
string str= customtableattribute.GetTableAttribute(student);
5常用部分特性
[Key]//说明这个属性是主键virtual public int Id { get; set; }[StringLength(maximumLength:50,MinimumLength =2)]//字符串长度public string Name { get; set; }[EmailAddress]//识别邮箱格式public string Email { get; set; }[Required]//属性不能为空public string Description { get; set; }[Display(Name="电话号码")]//显示字段别名public string PhoneNumber { get; set; }