This error typically occurs when the ValueExpression parameter is not provided, which is usually handled automatically when using @bind-Value.
I faced same issue using @bind-Value. Try changing the ValueEpression instead of @bind-Value
A simple example is:
<InputText @bind-Value="clientRecord.clientName" ValueExpression="() => clientRecord.clientName" />