* About Using asp.net Membership and profile providers with RIA Services
After reading about RIA services. I wanted to write some sample code to hook into asp.net Membership and profile providers.
So I wrote couple of custom providers.
MembershipProvider
I had a simple table with UserID,UserName,Email and password columns
I did not bother with all the different overloads. I have just added code in few places like Initialize, GetUser, ValidateUser and CreateUser
ProfileProvider
I created a table which will store 3 values for each user, Theme, City and State
again I did not code for all the different overloads. I have added code for Initialize, SetPropertyValues, GetPropertyValues more here

