Initial value for RadzenDropDown

I have a DDL that I want to initially show the bind-Value which comes from a database query. The DDL works but not the initial value. What am I missing?

        <RadzenDropDown @bind-Value=@Carrier Data=@listOfCarriers
            TextProperty="@nameof(KR_CarrierCode.CarrierCode)" ValueProperty="@nameof(KR_CarrierCode.CarrierCode)" Style="width: 200px" />

Make sure to the value matches one of the CarrierCode values from the list.

Thanks. The issue was the structure the element of the list didn't match that of the bound variable. Knowing that it should work helped me find my error.