I am new to IoC and am using Autofac in my current project.
I have the following 2 classes:
public class UserService : IUserService { private rea
Autofac has documentation on how to handle circular dependencies that might help here. You can get it to work if you follow the guidance there (which boils down to: make one of the dependencies a property rather than a constructor dependency).