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.)