Is there a way to use ninject's conventional binding to bind to self and all interfaces.
_container.Bind(x => x.From(_assemblyList)
.SelectAllClasses()
.BindAllInterfaces());
The code above does all interfaces but I can't seem to find a way to also bind to self in the same statement.