使用屬性和反射過渡從資料存取層到業務物件 - 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,用來在已耗用時間得到物件等等.