I'm trying to implement a UoW like shown here: http://ianfnelson.com/archives/2010/04/09/wcf-global-exception-handling/
But I can't for the life of me figure out how to wire it up with Autofac. I have absolutely no idea where to start.
I've got WCF working fine with Autofac from using: http://code.google.com/p/autofac/wiki/WcfIntegration
But to inject or add the IEndpointBehavior? No idea...
If there's a better way to implement a UoW I would like to hear.
Edit:
For now I've just done:
builder.RegisterType(typeof (UnitOfWork))
.As(typeof (IUnitOfWork))
.InstancePerLifetimeScope()
.OnRelease(x =>
{
Trace.WriteLine("Comitted of UoW");
((IUnitOfWork) x).Commit();
});
Though I don't know if this is an acceptable way of doing it, seems like a hack :(
Edit2:
Doesn't seem like it's possible to run a UoW in WCF :/
Edit 3:
I've posted my solution here: http://www.philliphaydon.com/2011/11/unit-of-work-with-wcf-and-autofac/