Select search field


Blazor
<BspSelectSearchField @bind-Value="_selectedValue"
                      Label="Fruit"
                      Search="term => ExampleDataStore.SearchItemsAsync(term)"
                      Recover="id => ExampleDataStore.GetItemAsync(id!.Value)!"
                      ValueAccessor="item => item.Id"
                      TextAccessor="item => item.Name" />

@code {
    private int? _selectedValue = null;
}