I want to call the function when some value of Dropdownlist is selected and that function will use the selected value's id. How could i bind the selected value's id to model? I can load data to the dropdownlist.
<select>
<option *ngFor="let category of categorylist" >
{{ category.Description }}</option>
</select>