I'd like to find out at runtime all the types in an ExpandoObject.

Here's some exploratory code:

using PetaPoco;

...

var data = _d.Query<dynamic>(_script);
IDictionary<string, object> hood = (IDictionary<string, object>)data.First();
var wow = hood.Values.Where(x => x != null).Select(x => x.GetType().ToString());

The where method politely steps over the null values in the returned ExpandoObject... hardly a solution as it relies on a row even being returned in the first place.

Is there a better way to query what PetaPoco.Database learns as it builds the ExpandoObject?

(The fallback is to query the database again for its schema objects.)

link|improve this question

25% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.