I'm currently building an n-tier web application, mainly to practice new technologies and patterns - repositories, uow, services, ioc, ef4 and mvc3.
After lots of hair-pulling I now have ef4 saving my entities through my service layer using repositories.
I'm now starting to define methods I'll need in the service layer and am thinking now's a good time to start implementing authentication. Normally I would roll my own authentication code however I've been told by a friend to try the Membership Provider.
Now obviously I'm going to use this within the mvc3 web app but I'm wondering if I can use this within my service layer as well? Can anyone point me to any articles or blog posts?
NB. Apologies if I'm stating the obvious however I just wanted to be clear that when I'm referring to my service layer, I don't mean WCF; these are my own classes which respect the service layer pattern - http://martinfowler.com/eaaCatalog/serviceLayer.html. Having said that, I may wish to expose this service layer through WCF services at a later date.
I've been googling for a couple of hours now and haven't come up with anything!
Any help is really appreciated.