I have this 2 classes:
public class OrderDetail
{
public int Id {get; set;}
public int OrderId {get; set;}
public virtual Product Product {get; set;}
}
public class Product
{
public int Id {get; set;}
public int Number {get; set;}
public string Description {get; set;}
}
And I have a DataGridView bound to a binding source which in turn is bound to OrderDetail.
For the Product column, the grid currently displays the text MyAssembly.Product.
How can I set that column to display OrderDetail.Product.Description?