I want to populate a listbox, so I have to define an array of ListBoxItem. The data is stored in a database.

This is my original method:

public IEnumerable<String> GiveStudentsNormalAsString(int lesson, int class)
    {
        Lesson l = giveLesson(lesson);
        Class c = GiveClass(l, class);
        return (from s in c.Students
                orderby s.Name, s.FirstName
                select s.Name);
    }

So "Class" contains a List of Students (a navigational property). What I want to do is not returning an IEnumerable of Strings, but an IEnumerable of SelectListItems.

I started already:

public IEnumerable<SelectListItem> GiveStudentsNormalAsString(int lesson, int class)
    {
        Lesson l = giveLesson(lesson);
        Class c = GiveClass(l, class);
        return .Select(student => new SelectListItem
        {
            Text = ...
            Value = ...
        };
    }

But what do I have to write as Text and Value? for example, I want the Student Number act as Value, how can I do that?

Here's my edmx: EDMX1

link|improve this question

40% accept rate
feedback

1 Answer

You just refer to the student variable when building the SelectListItem:

public IEnumerable<SelectListItem> GiveStudentsNormalAsString(int lesson, int class)
{
    Lesson l = giveLesson(lesson);
    Class c = GiveClass(l, class);
    return c.Students.Select(student => new SelectListItem
    {
        Text = student.Name,
        Value = student.Number.ToString()
    });
}

Of course it can also be written using the LINQ syntax, if you prefer so:

public IEnumerable<SelectListItem> GiveStudentsNormalAsString(int lesson, int class)
{
    Lesson l = giveLesson(lesson);
    Class c = GiveClass(l, class);
    return (from student in c.Students
            select new SelectListItem
            {
                Text = student.Name,
                Value = student.Number.ToString()
            });
}
link|improve this answer
Thanks, that helped!! – Laurent De Wilde Aug 17 '11 at 8:45
But I have a question: when I enter Value = student.StudentID, it gives me an error saying that it cannot convert from int to string... – Laurent De Wilde Aug 17 '11 at 8:57
@Laurent That's because SelectListItem.Value is string, so you have to convert student.StudentID to string first. I updated the code accordingly. – twoflower Aug 17 '11 at 10:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.