Hello
Just been introduced to the ASP.NET Provider Model as a potential data-access technology. My own idea is to use LINQ repositories, but want to keep an open mind.
Any thoughts?
Thanks
Hello
Just been introduced to the ASP.NET Provider Model as a potential data-access technology. My own idea is to use LINQ repositories, but want to keep an open mind.
Any thoughts?
Thanks
ASP.NET is the web framework for .NET, and has nothing to do with data access.
It does use the provider model for many functions, including membership. Perhaps you're mixing this up with data access?
If you're interested in using the provider model for switching out your repository after compile time with different implementations, you need to look at Dependency Injection/Inversion of Control frameworks such as MS' Unity.