vote up 1 vote down star
1

I was wondering if there is some way to name or rename a property on an Anonymous type to include a space in the property name. For example:

var resultSet = from customer in customerList
    select new 
    {
       FirstName = customer.firstName;
    };

In this example I would like FirstName to be "First Name". The reason for this question, is I have a user control that exposes a public DataSource property that I bind to different anonymous type. It is working perfectly right now, except for the one little shortcoming of the column names being a little less than user friendly (FirstName instead of First Name).

flag

60% accept rate

3 Answers

vote up 3 vote down

What about doing something like this:

var resultSet = from customer in customerList
    select new 
    {
       Value = customer.firstName, Title = "First Name";
    };

Then in your user control use Value as the contents and Title as the column name.

link|flag
vote up 0 vote down

I'd add an attribute to the property where you can specify a custom name, and you can provide more user friendly names using the attribute.

link|flag
You can't specify attributes in anonymous object creation expressions. – Jon Skeet Oct 17 '08 at 23:37
vote up 1 vote down

No, its not possible, spaces are not allowed in the names of members, you can use perhaps underscore or programmatically change the captions of your columns after the data is bound...

link|flag
CMS, do you see any problem with adding the underscore or some other character and replacing this character with a space within the user control caption? – SaaS Developer Oct 17 '08 at 22:52

Your Answer

Get an OpenID
or

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