Currently I'm loading some of my components dynamically with this piece of code.
export class ComponentOutlet {
    constructor(
        private vcRef: ViewContainerRef,
        private compiler: Compiler,
        private dataService: DataService
    ) { }
    private _createDynamicComponent() {
        // Some logic to decide which component should be loaded
        return MyComponent;
    }
    ngOnChanges() {
        this.compiler.compileComponentAsync(this._createDynamicComponent())
            .then(factory => {
                const injector = ReflectiveInjector.fromResolvedProviders([], this.vcRef.parentInjector);
                this.vcRef.clear();
                this.vcRef.createComponent(factory, 0, injector);
            });
    }
The problem is that MyComponent has some @Input and Output bindings. Is it possible to set this bindings here? How can I achieve that?
 
    