Currently when the user selects an item from the DDL, the Id will be set to my model vm.Blah.Id
<div class="col-md-4">
    <label for="Blah">Blah blah</label>
    <select class="form-control" id="blah"  ng-change="vm.LoadBlahs()" ng-model="vm.Blah.Id">
        <option value="">Select some Blah</option>
        <option ng-repeat="m in vm.BlahList" value="{{m.BlahId}}">{{m.Name}}</option>
    </select>
</div>
When a DDL item is selected, I need to do this somehow:
vm.Blah.Id = m.BlahId;
vm.OtherBlah.SectionId = m.SectionId;
How can I update 2 things like that?
I'm on version 1.5.8
 
    