how get value on expando object #
dynamic eod = eo;
value = eod.Foo;
I was doing this generically/dynamically so didn't have the option of including the actual field name in the code and ended up doing it this way:
eo.Where(v => v.Key == keyNameVariable).Select(x => x.Value).FirstOrDefault();
Probably a better way to do this, but it works.