我有一个有学生详细信息的课程,当我从数据库中检索数据iam存储在数据表中时,如何将数据表值传递给类?
public class Student
{
public int StudentId { get; set; }
public string StudentName { get; set; }
public string Address { get; set; }
public string MobileNo { get; set; }
}