How would I go about binding the following object, Car, to a gridview?
public class Car { long Id {get; set;} Manufacturer Maker {get; set;} } public class
public class Manufacturer { long Id {get; set;} String Name {get; set;} public override string ToString() { return Name; } }
Override the to string method.