Extending the membership properties with ProfileProvider, seems to serialize all the extended properties as BLOB(?) in the aspnet_Profile table.
With a program on a remote server, I would like to connect to the web database(s) to fetch user registration data and updates, to update these details in a remote database, which is the main/superior datastore. The main purpose of the user registration is not the web site features, but simply to register login- and user-details which is the base for user identity on this other server, when user connects through a downloadable WinForm application.
How would I be able to get all user properties from the default ASPNETDB.MDF database? Some of the fields seem encrypted in some way, and then there is the issue with the multiple properties in two columns.
Am I better off making a custom membership system with manually created tables, or what would you recommended?