I use the following select statement:
<select ng-model="vm.institution" ng-options="c as c.institutionName for c in vm.institutionsOfUser"></select>
In my model, the institution is stored but what I will have is to onyl store the id of the institution selected (and contained in vm.institutionsOfUser-> id)
Is there a possibility to do this?