RadzenText with string value getting "no idea on how to unbox value types"

Here is my code:

<RadzenDataGridColumn TItem="BseAssessment" Property="AssessmentName" Title="Assessment Name">
    <EditTemplate Context="bse">
        <RadzenText @bind-Value="bse.AssessmentName"></RadzenText>
    </EditTemplate>
</RadzenDataGridColumn>

The RadzenDataGridColumn displays the information correctly:

When I click the Edit button, it shows this:

And the error message is:

One of the other fields in the same record is a double stored as a string (i.e. "1.2"), and it got the same error. I changed the editor field to a RadzenNumber with a TValue of "string" and that fixed that problem.

...but I can't for the life of me figure out why a string value, "The Boat", is throwing that error in a RadzenText field?

What am I missing?

This component is not editable - you might need to use RadzenTextBox if you want to edit strings.

Wow, that was silly of me! LOL

Thanks for the assist!