When I tried using the below syntax, it doesn't filter or doesn't exclude:-
ng-repeat = "option in vm.eesSettingIdOptions | filter : { SettingID: '!vm.eesAdminSetupData.SettingID'}
but it do works when I change it to:-
ng-repeat = "option in vm.eesSettingIdOptions | filter : { SettingID: '!51'}
they should be the same isn't it?