-2

我有班级学生名单

 public class studentList
    {
    public static IEnumerable<SelectListItem> GetStudents(int? ID)
            {
//code is required here
    return ;
            }
        }

我在这个方法中获取 ID,现在,我需要表中的所有其他 ID,不包括使用 linq 传递的参数 ID。

我有 Student 表,其中包含两个字段 StudentID 和 StudentName,现在我需要上述模式中学生的 ID 和姓名..任何人都可以帮助我...

4

1 回答 1

0

可能喜欢阅读:SQL to LINQ (Visual Representation)

   var data= form s in Students
     where s.StudentID != ID
    select new {ID= s.StudenID,Name = s.StudentName};

图像展示可能就像

在此处输入图像描述

于 2012-10-17T05:52:55.063 回答