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