There are many classes having this provider suffix. (Data,membership,modelmetadata,…).
When should be a class called as a provider class ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Providers mostly are between your logic and data stores of any kind (database, xml, etc.). MSDN mentions:
For more information: Microsoft ASP.NET 2.0 Providers: Introduction
For example:
In stead of working with a database or XML, you want to work with flat file storage on a disk somewhere within your network. To manage this you build a custom provider and use it within your logic to save the data.