public class Student{ public int ID{get;set;} public string Name{get;set;}}public T GetModule(T obj,string where){ //怎么通过传递的类型赋值 //要求:1.根据传递的SQL语句查询一条记录 //2.把查询的数据赋值到T obj中 //3.最后返回已赋值的obj;}//调用public void Main(){ Student st=GetModule<Student>(new Student(),"select * from Student where ID=1"); }
2 回答
红颜莎娜
TA贡献1842条经验 获得超12个赞
public T GetModule<T>(T obj,string where) { //怎么通过传递的类型赋值 // 要求:1.根据传递的SQL语句查询一条记录 //2.把查询的数据赋值到T obj中 //3.最后返回已赋值的obj;}
- 2 回答
- 0 关注
- 684 浏览
添加回答
举报
0/150
提交
取消