使用屬性和反射過渡從資料存取層到業務物件 - II

來源:互聯網
上載者:User
資料 簡介

前面的文章我介紹了使用attributes來描述業務物件.這篇文章我將會展示如何從類中提取描述資訊.為瞭解釋它是如何工作的,我將通過前面在類中使用的attributes寫個應用來建立sql指令碼用來產生表.

工具

這是一個控制台應用.工具將會裝載裝配件,列舉出類中標有DataTable的attibute產生sql指令碼用來建立表.

開始裝載部分代碼:

public static void Main(string[] args)

{

if (args.Length != 1)

{

Console.WriteLine("Usage: scriptgen [assembly path]");

return;

}





Assembly assembly = null;



try

{

assembly = Assembly.LoadFrom(args[0]);

}

catch (Exception e)

{

Console.WriteLine("Failed to load assembly [" + args[0] + "]");

Console.WriteLine(e.Message);

}



}

以上的代碼試圖通過參數路徑來裝載裝配件.現在我們必須列舉出所有的含有datatable attribute的裝配件.為了完成這個工作,請看如下代碼:

public void ParseAssembly(Assembly assembly)

{

Type[] types = assembly.GetTypes();



foreach(Type type in types)

{

if (type.IsClass)

{

DataTableAttribute[] dataTable = (DataTableAttribute[])

type.GetCustomAttributes(typeof(DataTableAttribute),

true);



if (dataTable.Length > 0)

{

Console.WriteLine("Found class '{0}'", type.ToString());

}

}

}

}

以下是列舉屬性的代碼.

void ParseClass(Type type, DataTableAttribute dataTable)

{

PropertyInfo[] properties = type.GetProperties();



// gets the key field

foreach (PropertyInfo property in properties)

{

KeyFieldAttribute[] key = (KeyFieldAttribute[])

property.GetCustomAttributes(typeof(KeyFieldAttribute),

true);



if (key.Length > 0)

{

Console.WriteLine("Key = " + property.Name + " type is "

+ property.PropertyType);

break;

}

}



// gets the other fields

foreach (PropertyInfo property in properties)

{

BaseFieldAttribute[] field = (BaseFieldAttribute[])

property.GetCustomAttributes(typeof(BaseFieldAttribute),

true);



if (field.Length > 0)

{

if (!(field[0] is KeyFieldAttribute))

{

Console.WriteLine("Property " + property.Name

+ " [" + property.PropertyType + "] " +

+ "maps to column [

+ field[0].ColumnName + "]");

}



}

}

}

現在我們不得不建立sql指令碼.我們的工具僅能滿足2個需求: key是int,identify 屬性類型只有這些是允許的:string,int,decimal,和datetime.

源檔案將會建立以下的裝配件:

DAL.dll: 包含 attributes
Customer.dll: 包含業務物件
scriptGen.exe: 用來產生sql指令碼的工具.
下一步

接下來的文章我將建立整個DAL,用來在已耗用時間得到物件等等.




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.