I have below sql table that have PropertyName, PropertyValue and PropertyType fields e.g:
PropertyName|PropertyValue|PropertyType
name|John|string
city|London|string
Mobile|01234546|integer
DOB|20-04-1981|datetime
Whats the best way of writing methods to select and update through asp.net ( keep in mind properties have different data types stored in PropertyType field)
Thanks
Go to the complete details ...