In the epic quest of me getting my Create and Edit methods working for my complex model, I've come up with an idea - adding a boolean IsSelected property to one of my entity classes for use with checkboxes in my views. Is it possible? Would something as simple as
public partial class Platform : SomeBaseClass
{
public bool IsSelected { get; set; }
}
Do the trick?