3
數據庫鏈接泛型列表我有一個類使用反射
public class UserInfo
{
public int ID { get; set; }
public string Name { get; set; }
public string Address { get; set; }
}
,我需要使數據庫之間的聯繫,使用此代碼:
using (SqlDataReader reader = cmd.ExecuteReader())
{
while (reader.HasRows)
{
}
}
上的所有線路使用反射數據庫。
並將它們存儲到一個通用的列表:
List<UserInfo> users = new List<UserInfo>();
我明白了!
爲什麼不使用[許多可用的ORM]之一(http://en.wikipedia.org/wiki/List_of_object-relational_mapping_software#.NET)而不是滾動自己的? – GolfWolf
這是你的意思嗎? http://stackoverflow.com/questions/12662318/how-to-convert-datatable-to-listt-using-reflections – Winks
我明白了!謝謝 ! – SanRyu