If i have two objects, namely Fruit' and
Color` and their definitions are as follows:
public class Fruit
{
public int FruitId { get; set; }
public string Name { get; set; }
public Color Color { get; set; }
}
public class Color
{
public int ColorId { get; set; }
public string Name { get; set; }
}
How do I bind a collection of Fruit
(e.g. List<Fruit>)
to a DataGridView? where the resulting output would be something similar to the following:
+-----+--------+----------+
| Id | Name | Color |
+-----+--------+----------+
| 10 | Apple | Red |
| 20 | Orange | Orange |
| 30 | Grapes | Violet |
+-----+--------+----------+
and NOT like the following output below: (Note: the N in N.Color
indicates the namespace of the object Color)
+-----+--------+------------+
| Id | Name | Color |
+-----+--------+------------+
| 10 | Apple | N.Color |
| 20 | Orange | N.Color |
| 30 | Grapes | N.Color |
+-----+--------+------------+
Update #1:
I found a similar post here on SO and tried some of the suggestion on that post but it's not working...
Color
type propertyColor
in your classFruit
, because then you will get the outputN.Color
, Also why yourName
in Color class is of typeint
? – Why