如何获取类或属性的自定义特性

 我来答
受司大人
推荐于2016-03-08 · 知道合伙人影视综艺行家
受司大人
知道合伙人影视综艺行家
采纳数:20262 获赞数:171847
毕业于浙江广厦,有一定的电脑专业基础和两年工作经验,读过相关书籍多本

向TA提问 私信TA
展开全部
1. 定义一个以Attribute结尾的特性类, 特性类继承自System.Attribute, 如下所示.
[AttributeUsage(AttributeTargets.Property, AllowMultiple=false)]
public class PrimaryKeyAttribute : System.Attribute
{
.............

其中AttributeTargets是一个枚举的值, 可以是: Assembly | Module | Class | Struct | Enum | Constructor | Method | Property | Field | Event | Interface | Parameter | Delegate

2. 在需要使用的地方使用PrimaryKey自定义特性标签, 如下所示.
[PrimaryKey(Column = "CustomerID", IsIdentity=false)]
public int ID
{
.............

3. 为了获取自定义特性的信息, 需要反射的方式获取其数据, 首先我们定义一个类来存储这些信息, 如下所示
public class PrimaryKeyModel
{
private readonly PropertyInfo propertyInfo;//外键的属性字段信息
private readonly PrimaryKeyAttribute primaryKeyAtt;//外键的特性信息
................

public static PrimaryKeyModel GetPrimaryKey(Type type)
{
PropertyInfo[] properties = type.GetProperties();
foreach (PropertyInfo p in properties)
{
object[] keys = p.GetCustomAttributes(typeof(PrimaryKeyAttribute), true);
if (keys.Length == 1)
{
return new PrimaryKeyModel(p, keys[0] as PrimaryKeyAttribute);
}
}
return null;
}

4. 在Customer类中获取其特性的信息代码如下
string strReturn = string.Empty;
//Get PrimaryKey Name
PrimaryKeyModel attribute= PrimaryKeyModel.GetPrimaryKey(this.GetType());
if(attribute != null)
{
strReturn += string.Format("PrimaryKey Name:{0} IsIdentity:{1} Column:{2}\r\n",
attribute.Property.Name, attribute.PrimaryKeyAtt.IsIdentity, attribute.PrimaryKeyAtt.Column);
}
典颐Rv
推荐于2018-04-05 · TA获得超过2.2万个赞
知道大有可为答主
回答量:2615
采纳率:31%
帮助的人:384万
展开全部
1. 定义一个以Attribute结尾的特性类, 特性类继承自System.Attribute, 如下所示.
[AttributeUsage(AttributeTargets.Property, AllowMultiple=false)]
public class PrimaryKeyAttribute : System.Attribute
{
.............

其中AttributeTargets是一个枚举的值, 可以是: Assembly | Module | Class | Struct | Enum | Constructor | Method | Property | Field | Event | Interface | Parameter | Delegate

2. 在需要使用的地方使用PrimaryKey自定义特性标签, 如下所示.
[PrimaryKey(Column = "CustomerID", IsIdentity=false)]
public int ID
{
.............

3. 为了获取自定义特性的信息, 需要反射的方式获取其数据, 首先我们定义一个类来存储这些信息, 如下所示
public class PrimaryKeyModel
{
private readonly PropertyInfo propertyInfo;//外键的属性字段信息
private readonly PrimaryKeyAttribute primaryKeyAtt;//外键的特性信息
................

public static PrimaryKeyModel GetPrimaryKey(Type type)
{
PropertyInfo[] properties = type.GetProperties();
foreach (PropertyInfo p in properties)
{
object[] keys = p.GetCustomAttributes(typeof(PrimaryKeyAttribute), true);
if (keys.Length == 1)
{
return new PrimaryKeyModel(p, keys[0] as PrimaryKeyAttribute);
}
}
return null;
}

4. 在Customer类中获取其特性的信息代码如下
string strReturn = string.Empty;
//Get PrimaryKey Name
PrimaryKeyModel attribute= PrimaryKeyModel.GetPrimaryKey(this.GetType());
if(attribute != null)
{
strReturn += string.Format("PrimaryKey Name:{0} IsIdentity:{1} Column:{2}\r\n",
attribute.Property.Name, attribute.PrimaryKeyAtt.IsIdentity, attribute.PrimaryKeyAtt.Column);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式