程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 反射學習系列2-特性(Attribute)(3)

反射學習系列2-特性(Attribute)(3)

編輯:關於C語言

列特性:

[AttributeUsageAttribute(AttributeTargets.Property, Inherited = false, AllowMultiple = false)]
  public class ColumAttribute : Attribute
  {
    private string _columName;

    private DbType _dbType ;

    public ColumAttribute()
    {
    }

    public ColumAttribute(string columName)
      : this()
    {
      this._columName = columName;
    }

    public ColumAttribute(string columName, DbType dbType)
      : this(columName)
    {
      this._dbType = dbType;
    }

    //列名
    public virtual string ColumName
    {
      set
      {
        this._columName = value;
      }
      get
      {
        return this._columName;
      }
    }

    //描述一些特殊的數據庫類型
    public DbType DbType
    {
      get { return _dbType; }
      set { _dbType = value; }
    }

  }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved