I have a huge amount of customized attributes I want to save them in the DataBase, I was confused of how to store them in the database, i thought of storing them as a string sep
Try to use System.Web.Script.Serialization.JavaScriptSerializer, here is example:
System.Web.Script.Serialization.JavaScriptSerializer
var yourObject = new JavaScriptSerializer().Deserialize(strInput)
or