If I have objects in my DataSource i.e
.Select(e => new { Foo = new { Bar = "HelloWorld" }, Price = 12345 }
how do I reference this using Eval?
<%# Eval("Foo.Bar") %>
doesn't work? (Eval("Price") does....)
Is there anyway to do <%# Eval(Eval("Foo"),"Bar") %> or something ?