I've been trying to figure out AutoMapper over the weekend and (I guess it's just me) it just does not cut the mustard with two-way mappings.

Sure it's simple enough to flatten domain models into view models, but that's just one of the features I need from an OOM.

Can anyone perhaps post an example of a successful AutoMapper implementation with two-way mappings and CRUD operations (If it include dependency injection with Castle that would be grand!)
(CodeCampServer does it, but it's implementation is a bit confusing without proper documentation)

For time being I created my custom mapper (lot of code, and probably going to be slow, but I did not like the direction my mappings was going using AutoMapper)