开发者

How to I delete an unrequired user profile property from web.config and the database?

开发者 https://www.devze.com 2023-01-22 10:58 出处:网络
I use the default ASP.NET Profile Provider which lets me define user properties in web开发者_开发知识库.config.

I use the default ASP.NET Profile Provider which lets me define user properties in web开发者_开发知识库.config.

I now no longer want to use one of these user properties. I want to delete all traces of it.

I can remove the property from the list of properties in web.config however, I suspect, the stored values for this property will still be held in the aspnet_Profile table for each user.

Is there an easy way to clean out all traces of the data for a property that's no longer used from the aspnet_Profile table?


Try deleting the property from the config and check the aspnet_Profile table. The value is probably not deleted. You can use SQL statement to clean the part you don't want or you could try using this which came across: http://snipplr.com/view/36547/aspnet-membership-provider--remove-unwanted-profile-properties/

Backup before you experiment :)

0

精彩评论

暂无评论...
验证码 换一张
取 消