Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
353 views

Provider model in .net

When the .net 2.0 framework first came out, the provider model was all the rage. 2.0 even shipped with a bunch of default providers (Membership, sitemap, role). Since the release of 2.0, the hype has ...
5
votes
2answers
832 views

Is the Repository Pattern the same as the Asp.net Provider Model?

Since Asp.net 2.0, there is the Provider Model. On the implementation detail, a provider is class derived from ProviderBase which is an abstract class rather than an interface, but anyway the ...
3
votes
3answers
196 views

Provider model and performance

Are there any performance implications with using the provider pattern? Does it rely on reflection for each instantiation or anything?
1
vote
1answer
974 views

Is the provider model using the factory pattern?

Is the provider model really just the factory pattern?
0
votes
1answer
49 views

What is the best alternative to the ASP.NET Provider Model if using IOC also?

The ASP.NET Provider Model was a great technology to solve the problem of allowing someone to "plug in" a separate implementation of some functionality into a web application. The Provider Model is ...
0
votes
1answer
168 views

Provider Model in ASP.Net MVC 3 — Using SQL Server 2008 R2 Dev Ed, not defaul SQLExpress

I am currently working on an ASP.Net MVC 3 tutorial on the MS ASP.Net website (MvcMusicStore). I use a database-first approach and have successfully modified the tutorial to access an independently ...
0
votes
2answers
99 views

Has anyone been able to use the .NET provider model with a winforms app?

I've seen oodles of examples for ASP.NET, but none for winforms. In other words, using the app.config instead of web.config. It would be a shame if it did not work.
0
votes
3answers
822 views

How do I integration testing to my code written using the ASP.NET Provider Model?

I'm fairly new to unit testing. I have a site built in the 3-tier architecture, UI -> BLL -> DAL. And I used the asp.net Provider Model, so by making changes to web.config I can switch to DAL dll to ...