I want to use ngIf and ngFor in one line. I know it is not possible but is there any other method to do this?
Here is my code:
<option *ngIf="tmpLanguage.id!=languages.id"
*ngFor="let tmpLanguage of languages" [ngValue]="tmpLanguage.id">
{{tmpLanguage.identificatie}}
</option>