Ninject transient scope applies only once, at the moment a class is constructed:
class InjectedClass
{
[Inject]
public IClass Instance { get;set;}
}
any call to Instance property from an InjectedClass method will refer to same instance of IClass. Is it possible to return a new instance every time? I don't have a reference to IKernel.