ObjectDataSource with list of others object in an object

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i all,

I have a class with properties returning int, string, date... and generic
Lists of other classes.

private static string zipcode;
private static string city;
private static double? x;
private static double? y;
private static List<Proprio> proprio;
private static List<TransactionInfo> transactions;

When I bound this class with the ObjectDataSource , I don`t see my Proprio
and Transaction List .

Don`t know exactly how to extract these infos. I see them when the object
return the infos but not when I go in my datagrid for editing my columns
 
Back
Top