How should I setup the database field and BO Mapping so no option is selected on a BO.Add? I need to use the values 0-4 for the option values since they are later used in summary calculations.
You are fighting .NET serialization and so this value is being updated and set in the InitializeComponent method...the answer is, "Yes." but you may, in this instance, just need to set this in the constructor or the load instead of fighting the .NET designer.
I want the user control to render with no option selected and if the BO is saved without the user making a selection I want a required field broken rule to be displayed. Can I make the RadioButtonGroup do this?