vote up 0 vote down star

This is somewhat asp.net MVC related only for example purposes but I was hoping to achieve something like this:

new SelectList(ViewData.Model.Formats.ToList().ForEach(x => index + " - " + x.Name), "ID", "Name");

Basically trying to be smart and return "index" as a number 1 - n where n is the number of items in the list ViewData.Model.Formats so my select list has a # prefixed on each entry. Any simple way to do this, or am I looking at making a new list with that append and ditching the lambda trick?

flag

80% accept rate

3 Answers

vote up 1 vote down

How about

int index = 0;
new SelectList(ViewData.Model.Formats.ForEach(x => ++index + " - " + x.Name), "ID", "Name");

(I only tried the lambda expression with its capture of index. I don't know about the other classes.)

link|flag
I like your style! However I can't seem to even assign something to "x.Name" ForEach(x => x.Name = "test") returns an error. Perhaps you can't re-assign in a forEach()? :S – GONeale Jan 9 '09 at 6:31
You can do an assignment (as long as x is a class), but I don't know the structure of ViewData.Model.Formats, so I'm sorry I can't help you here. Also check Neil's answer. It's better in my opinion. – Hosam Aly Jan 9 '09 at 6:53
Hosam, yes 'x' is a class, but the assignment was stating 'cannot convert void to IEnumerable' or something and disallowed it. – GONeale Jan 9 '09 at 6:56
vote up 2 vote down

You could use the fact that LINQ's Select can give you the index of each element:

new SelectList(ViewData.Model.Formats.Select((x, i) => (i + 1) + " - " + x.Name, "ID", "Name");

Note that this doesn't mean any database access, just standard LINQ to Objects.

link|flag
Thanks for the information. I didn't know about it. – Hosam Aly Jan 9 '09 at 6:50
Great Neil, can you update your example to include 'ID' in the select? – GONeale Jan 9 '09 at 6:55
vote up 0 vote down check

With great help from Neil and Hosam, I got this working with the following:

new SelectList(ViewData.Model.MessageTypeFieldFormats.Select((x, i) => new { ID = x.ID, Name = (i + 1) + " - " + x.Name })

Anon methods rock!

link|flag

Your Answer

Get an OpenID
or

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