< 1>
using System;using System.Collections.Generic;using System.Linq;using System.Web;namespace 实体类{ public class User { public int Id { get; set; } public string UserName { get; set; } public int Age { get; set; } public int Gender { get; set; } }}
<3>
WebForm1.aspx.cs ページ (注: WebForm1.aspx ページは WebForm1.aspx.cs クラスを継承します)
using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data;namespace 实体类.ModelService{ public class UserService { public static List<User> SelectDataToEntity() { //通过查询数据库,将获取到的数据转换成一个list List<User> list = SqlHelper.SelectDataToList<User>("select * from T_User"); return list; } }}
ウェブフォーム1 .aspx ページ
rree