I would like to bind a List of a Player class (Representing american football players' statistics) to a GridView. The way I represent these players (On a model level, so I could change this in the modelview) causes me a lot of trouble.
class Player
{
public string Name { get; set; }
public List<Statistic> Statistics { get; set; }
}
class Statistic
{
public string ShortName { get; set; }
public double Value { get; set; }
public StatisticCategory Category { get; set; }
}
enum StatisticCategory
{
Offense,
Defense
}
I would like to Bind a list of these Players to a view which can be ordered by columns. For Columns I would like to do the following: Take the value of a combo box, convert it to a StatisticCategory object, then select all of the statistics in the same Category (each only once, of course) of all the players. The data bound to these columns should be the value of the statistics (if the player has the given statistic), otherwise the character '-', or something similar, representing a lack of data.
I've considered many options using online tutorials, but none seem to cover this kind of binding, I'm not even sure this is possible.
Maybe I should consider other representations of my data, if you have suggestions concerning that, it'd be appreciated aswell.