show/hide this revision's text 3 added 3 characters in body

I think you need to go with a data model like --

Product Table

  • ProductId (PK)
  • ProductName
  • Details

Property Table

  • PropertyId (PK)
  • ProductId (FK)
  • ParentPropertyId (FK - Self referenced to categorize properties)
  • PropertyName
  • PropertyValue
  • PropertyValueTypeId

Property Value Lookup Table

  • PropertyValueLookupId (PK)
  • PropertyId (FK)
  • LookupValue

And then have a dynamic view based on this. You could use the PropertyValueTypeId coloumn to identify the type, using a convention, like (0- string, 1-integer, 2-float, 3-image etc) - But ultimately you can store everything untyped only. You could also use this column to select the control template to render the corresponding property to the user.

You can use the Value lookup table to keep lookups for a specific property (so that user can choose it from a list)

show/hide this revision's text 2 added 335 characters in body

I think you need to go with a data model like

Product Table

  • ProductId (PK)
  • ProductName
  • Details

Property Table

  • PropertyId (PK)
  • ProductId (FK)
  • ParentPropertyId (FK - Self referenced to categorize properties)
  • PropertyName
  • PropertyValue
  • PropertyValueTypeId

Property Value Lookup Table

  • PropertyValueLookupId (PK)
  • PropertyId (FK)
  • LookupValue

And then have a dynamic view based on this. You could use the PropertyValueTypeId coloumn to identify the type, using a convention, like (0- string, 1-integer, 2-float, 3-image etc) - But ultimately you can store everything untyped only. You could also use this column to select the control template to render the corresponding property to the user.

You can use the Value lookup table to keep lookups for a specific property (so that user can choose it from a list)

show/hide this revision's text 1

I think you need to go with a data model like

Product Table

  • ProductId (PK)
  • ProductName
  • Details

Property Table

  • PropertyId (PK)
  • ProductId (FK)
  • ParentPropertyId (FK - Self referenced to categorize properties)
  • PropertyName
  • PropertyValue

Property Value Lookup Table

  • PropertyValueLookupId (PK)
  • PropertyId (FK)
  • LookupValue

And then have a dynamic view based on this.