I\'ve managed to get a Select list to bind with my model for the purpose of saving, but I cannot work out how to make Angular2 automatically select the correct option on the
If you use
{{object.name}}
You need to set the property object in you components class to the item from objects that you want to have pre-selected.
object
objects
class MyComponent { object; objects = [{name: 'a'}, {name: 'b'}, {name: 'c'}]; constructor() { this.object = this.objects[1]; } }