I am having a field of Boolean in Model named Child_With_Bed .

Now, I want radio button group in which yes = true and no = false. So when I select it Child_With_Bed's value is set.
I tried below code but it is not getting bind with my model.
<tr>
<th>
<%: Html.LabelFor(model => model.Child_With_Bed)%>
</th>
<td>
<%: Html.RadioButton("child", Model.Child_With_Bed)%> Yes
<%: Html.RadioButton("child", !Model.Child_With_Bed)%> No
</td>
</tr>
I don't know how to do this. Please help. Thanks in Advance.