I\'m using Rob Conery\'s Massive ORM, and I haven\'t been able to bind the resulting ExpandoObject to a GridView.
ExpandoObject
GridView
I did find another Stacko
If we are talking GridView (meaning not WPF) then impromptu can proxy an expando to a poco given an interface. Say we have a list of expando's you can convert them to poco's:
IEnumerable listOfPocos = Impropmtu.AllActLike(listOfExpandos, typeof(INotifyPropertyChanged));