vote up 0 vote down star

I need to convert a select list (which is populated by a data feed) into lower case, I have traced as far some code in the relevant controller;

private SelectList getAddressCountriesListDD()
{
    var addressCountries = myOPG.AddressCountries;
    return new SelectList(addressCountries, "key", "value", "GBR");
}

The myopg part is the datafeed, I need to get the selectlist into lowercase.

How can I accomplish this?

flag

60% accept rate
hi, there seems to be two elements to the datafeed, the key and the value - does the conversion affect both these ? is there a way to target the values only - as it seems to be failing when i introduce the code. Thanks – ivor Nov 4 at 16:29

2 Answers

vote up 4 vote down

Replace

var addressCountries = myOPG.AddressCountries;

with

var addressCountries = myOPG.AddressCountries
                            .Select(c => c.ToString().ToLowerInvariant());
link|flag
vote up 0 vote down

if addressCountries is a list of strings, then something like this (using LINQ).....

var lcase = from c in addressCountries
select c.ToLower();
link|flag

Your Answer

Get an OpenID
or

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