I'm able to bind using ngModel
for a single select but I would like to bind an array to the multiple selected options. When I attempt this I get the error
Cannot find a differ supporting object 'xxx' in 'myModelProperty'
My Code
<select multiple [(ngModel)]="myModelProperty">
<option *ngFor="#item of myOptions" [value]="item.value">{{item.name}}</option>
</select>