vote up 3 vote down star
3

What's the simplest way to code against a property in C# when I have the property name as a string? For example, I want to allow the user to order some search results by a property of their choice (using LINQ). They will choose the "order by" property in the UI - as a string value of course. Is there a way to use that string directly as a property of the linq query, without having to use conditional logic (if/else, switch) to map the strings to properties. Reflection?

Logically, this is what I'd like to do:

query = query.OrderBy(x => x."ProductId");

Update: I did not originally specify that I'm using Linq to Entities - it appears that reflection (at least the GetProperty, GetValue approach) does not translate to L2E.

flag

I think you'd have to use reflection, and I'm not sure you can use reflection in a lambda expression... well, almost certainly not in Linq to SQL but maybe when using Linq against a list or something. – Telos Nov 6 at 17:49
@Telos: There's no reason that you can't use reflection (or any other API) in a lambda. Whether or not it will work if the code gets evaluated as an expression and translated into something else (like LINQ-to-SQL, as you suggest) is another question entirely. – Adam Robinson Nov 6 at 17:56
This is why I posted a comment instead of an answer. ;) Mostly used to Linq2SQL... – Telos Nov 6 at 18:04

6 Answers

vote up 12 vote down check

I would offer this alternative to what everyone else has posted.

System.Reflection.PropertyInfo prop = typeof(YourType).GetProperty("PropertyName");

query = query.OrderBy(x => prop.GetValue(x, null));

This avoids repeated calls to the reflection API for obtaining the property. Now the only repeated call is obtaining the value.

However

I would advocate using a PropertyDescriptor instead, as this will allow for custom TypeDescriptors to be assigned to your type, making it possible to have lightweight operations for retrieving properties and values. In the absence of a custom descriptor it will fall back to reflection anyhow.

PropertyDescriptor prop = TypeDescriptor.GetProperties(typeof(YourType)).Find("PropertyName");

query = query.OrderBy(x => prop.GetValue(x));

As for speeding it up, check out Marc Gravel's HyperDescriptor project on CodeProject. I've used this with great success; it's a life saver for high-performance data binding and dynamic property operations on business objects.

link|flag
good point. gotta be careful with those lambdas – dkackman Nov 6 at 17:57
Note that reflected invocation (i.e. GetValue) is the most costly part of reflection. Metadata retrieval (i.e. GetProperty) is actually less costly (by an order of magnitude), so by caching that part, you are not really saving yourself that much. This is going to cost pretty much the same either way, and that cost is going to be heavy. Just something to note. – jrista Nov 6 at 18:42
1  
@jrista: invocation is the most costly, to be certain. However, "less costly" does not mean "free", or even close to it. Metadata retrieval takes a non-trivial amount of time, so there is an advantage to caching it and no disadvantage (unless I'm missing something here). In truth this should really be using a PropertyDescriptor anyway (to account for custom type descriptors, which could make value retrieval a lightweight operation). – Adam Robinson Nov 6 at 18:46
vote up 1 vote down

You can use dynamic Linq - check out this blog.

Also check out this StackOverFlow post...

link|flag
vote up -1 vote down

I agree that reflection could be a way.

But, why use it when you can define a criteria from outside.
e.g.

if (sortBy == "ProductId")
   query.OrderBy(x => x.ProductId);
else
   query.OrderBy(x => x.ProductName);
link|flag
1  
Because that is a maintenance headache. – dss539 Nov 6 at 18:54
How is this a solution to his problem? What if there were 20 properties that could be sorted by? – Xaero Nov 6 at 18:57
@dss539: define maintenance headache in this example, please? – shahkalpesh Nov 6 at 19:29
@Philip: What if the string variable contained a property name which didn't exist, leave aside the 20 properties which OP didn't tell about? – shahkalpesh Nov 6 at 19:30
vote up 1 vote down
query = query.OrderBy(x => x.GetType().GetProperty("ProductId").GetValue(x, null));

Trying to recall exact syntax off the top of my head but I think that is correct.

link|flag
vote up 1 vote down

Reflection is the answer!

typeof(YourType).GetProperty("ProductId").GetValue(theInstance);

There's lots of things you can do to cache the reflected PropertyInfo, check for bad strings, write your query comparison function, etc., but at its heart, this is what you do.

link|flag
vote up 1 vote down

Yes, I don't think there's another way than Reflection.

Example:

query = query.OrderBy(x => x.GetType().GetProperty("ProductId").GetValue(x, null));
link|flag

Your Answer

Get an OpenID
or

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