我有班级学生名单
public class studentList
{
public static IEnumerable<SelectListItem> GetStudents(int? ID)
{
//code is required here
return ;
}
}
我在这个方法中获取 ID,现在,我需要表中的所有其他 ID,不包括使用 linq 传递的参数 ID。
我有 Student 表,其中包含两个字段 StudentID 和 StudentName,现在我需要上述模式中学生的 ID 和姓名..任何人都可以帮助我...