I have an observable array of observable objects called
FieldsAndValues 
I'm binding the values of each object by their index using this
<input type="radio" data-bind="checked: DTO.FieldsAndValues()[0].Value, checkedValue: 'true'" class="separate" name="rdo">Yes
<input type="radio" data-bind="checked: DTO.FieldsAndValues()[0].Value, checkedValue: 'false'" class="separate" name="rdo">No
My question is, is there a way to bind the objects using the LeaveFieldName property as a selector and not their index?