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
Yes, you can create a TypeDescriptionProvider to accomplish nested binding. Here is a detailed example from an MSDN blog:
http://blogs.msdn.com/msdnts/archive/2007/01/19/how-to-bind-a-datagridview-column-to-a-second-level-property-of-a-data-source.aspx