This repository was archived by the owner on Dec 3, 2024. It is now read-only.
This repository was archived by the owner on Dec 3, 2024. It is now read-only.
Open
Description
Dear
I uses multi blazoredtypeahead component in one page with one searchmethod function.
i need a unique Id to category data for each component.
private async Task<IEnumerable> SearchList(string searchText)
{
return await Task.FromResult(newList.Where(x => x.categoryId=listId && x.Name.Contains(searchText)).ToList());
}
how to pass ListId to this function?