Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
115
Bind List<dynamic> to ultragrid1.DataSource?
posted

Can I do this?

  List<dynamic> data = _d.Query<dynamic>(_script).ToList();         // ToList() forces loading                ultraGrid1.DataSource = data;

  ultraGrid1.DataBind();

In the debugger, data is a list of System.Dynamic.ExpandoObjects.

Do I need to put some type of conversion in the middle?

 

 

 

 

Parents Reply Children
No Data