Bnding in dropdown list

Hello.
I want to create a dynamic addition of drop-down lists, but I can’t bind to the list item.
I imagine how to do it without Radzen https://stackoverflow.com/questions/60232952/blazor-select-bind-to-a-value-in-a-list
An example of what I'm trying to do

  <RadzenDropDown AllowClear="true" AllowFiltering="true" FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
 @bind-Value="listQuality[0]"  Placeholder="Select..." Data="@QualityProducts" TextProperty="Name"
                   ValueProperty="ID" Change="@(args => Change(args, "DropDown with multiple selection"))" class="w-100" />

DropDown component cannot work as plain select element - can display items provided as Data only.