Reputation: 82
I need to implement some (maybe 10) custom properties for logged in users for my MVC3 vb.net web app. These will define how certain data is displayed within my views.
I can think of a couple of possible solutions..
Has anyone got any tips on what worked well for them?
I already have custom membership and role providers that are working fine.
Thanks!
Upvotes: 2
Views: 805
Reputation: 10512
First solution - use standard ASP.NET Profile Properties feature.
If for some reasons you can't use that - then I'd vote for custom profile provider.
Upvotes: 1