Reputation: 67960
What is the role of the Profile Provider in ASP.NET / MVC?
What kind of information should be stored/retrieved using this functionality? How does it fit in with the rest of the family of user providers:
Upvotes: 0
Views: 502
Reputation: 703
How about using the Profile Provider to store a serialized copy of something like a users shopping cart? Is the Profile Provider not suitable to store this kind of data?
Upvotes: 0
Reputation: 4797
It's simply a way to store user information. A couple of examples I've used it for
Another advantage is the profile provider does not require authentication so you can use it even if you are not using the Membership provider
Upvotes: 3