昨天听同学说,要把DataReader对象转成实体对象,要写一个通用的方法.想了下用反射应该可以做到.项目中一般都是用第三方组件来做数据访问层,如,Nhibernate.ef等.于是自己想写个简单例子玩玩. 其实,实现起来和简单.一个泛型方法搞定.代码如下: public List<T> ToList<T>(string _sql) where T :class ,new() { using (var conn = new SqlConnection(connStr)) { usi…
ylbtech-SilverLight-DataBinding: Bingding to a Collection Objects(绑定一个集合对象) 1.A, Building a Data Object(创建一个数据对象) 1.B, Calling a Data Service(调用一个数据服务)[测试数据] 1.C, Binding to a Collection of Objects(绑定一个对象集合) 1.D, Binding to a Collection of Objects 2…
ylbtech-SilverLight-DataBinding: Binding to Data Objects(绑定到数据对象) 1.A, Building a Data Object(创建一个数据对象) 1.B, Displaying a Data Object with Datacontext(显示一个数据对象与DataContext) 1.C, Storing a Data Object as a Resource(存储一个数据对象作为一个资源) 1.D, Editing with T…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls;using System.Text; using System.IO; using System.Data; public partial class DownloadItem_CmdExeItem : System.Web…