views:

965

answers:

4

I have been told that the Provider pattern is a way to design loosely coupled components. I am working on designing an API. Could you please point to links where Provider pattern is explained. I found one here, are there any more that describe provider pattern using .net as the framework

+2  A: 

Here is a white paper from MSDN (linking to part 1)

Here is another source for Provider Design Patterns in ASP.NET 2.0 from C-Sharp Corner

TheTXI
A: 

MSDN offers a walk-through for the ASP.NET Provider Pattern

Lucas B
+5  A: 

In Juval Lowy's WCF book he calls the pattern the Bridge pattern. dofactory has some good stuff on it too.

I've recently been collecting some links on the provider pattern for an MS exam I was studying for (70-568). Here's the list- more than you'll ever need to know about the Provider Model:

RichardOD
Thank you for the links Richard!!! Each demonstrates a way to implement Provider Pattern
Nick
Glad it helped. It is a great pattern.
RichardOD
+1  A: 

Hi, the most elegant solution for achieving loose coupling is DI and IoC.

Have a look here:

Have fun :)

ruslander