Hello i have trouble with binding int multiple data to multiple values. I have this variable
IEnumerable multipleValues;
So im using this component
RadzenDropDown Disabled="@DisableArpDropDown" AllowClear="true" TValue="int"
LoadData=@LoadDataVirtualization AllowFiltering="true"
Data=@StudentList
TextProperty="Name"
@bind-Value=@multipleValues
Multiple="true"
ValueProperty="Id"
SelectedItemChanged=@(args => OnChange(args, "DropDown with multiple selection"))
My model is looks like that
public int? Id { get; set; }
public string Name { get; set; }
error CS1662: Cannot convert lambda expression to intended delegate type because some of the return types in the block are not implicitly convertible to the delegate return type
I found this link DropDown Multiple with integer value example is working fine for me but my component and code doesn't work i can't understand why.