I have a md-select set up as follows:
md-select
This solution is simple if you are wanting to default to the first value in the drop down.
Use the ng-select="$first". This will default the drop down to the first value.
ng-select="$first"
{{item.Name}}
Here is a CodePen to demonstrate.