I have a simple list of expando objects called products.

i add various fields to these objects at runtime ( for example color or size)

How can i write a LINQ query on this list based on dynamic fields ?

With a classic list of objects i could write a LINQ query like this :

From item in Products Where item.color="red" select item

but with expandos , how this can be achieved , knowing that i don't know in advance the name of the fields (it could be size of weight or anything else ) ?

Thank you in advance.

link|improve this question
feedback

2 Answers

up vote 4 down vote accepted

The expando object implements IDictionary(Of String, Object) Thus you could cast it to an IDictionary and access it's properties by passing a string.

link|improve this answer
Brilliant ! i was turning around for Hours and it works : from item as IDictionary(of String,Object) in products Where item("color")="Red" .... Thank You Sir ! – alainb Mar 27 '11 at 9:44
feedback

Check out this example here about the expando object: http://teusje.wordpress.com/2011/06/07/c-expandoobject/

link|improve this answer
Blog post doesn't describe anything about LINQ and ExpandoObject. – DalSoft Mar 15 at 13:25
feedback

Your Answer

 
or
required, but never shown

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