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/

link|improve this question

+1, I'm also using WCF and Autofac, so good question :) It looks like your code always commits, so I'm wondering: how do you handle situations where you don't want to commit the work? – adrift Nov 3 '11 at 3:49
@adrift - When Commit is called, it checks to see if the transaction is null or was rolled back. If it's not null and not rolled back, then it commits. If that makes sense. It's a hack to try get this to work until I find a better solution. – Phill Nov 3 '11 at 3:52
@adrift - I think I've solved the problem. I need to implement what's in my head and give it a good test but I will let you know my solution when it's done. If you want me to email you the solution directly (in-case you forget about this question) you can ping me at [blog (at) philliphaydon (dot) com] – Phill Nov 4 '11 at 1:12
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.