I want to allow the user to create his own entity, for example: - Student (Name, Age, School, Photo etc.) - Animal (Name, Type, Country etc.) - Car (Brand, Color, Price etc.) etc.
and then the user will be able to add records in the db according to the entity created.
All the properties will be strings.
My question is how can i save instances of these entities best in a database. Creating a new table for each entity created i think is out of the question. I was thinking saving in a table the properties for every entity created, and then in another table, instances of this entities, the properties will be separated be a comma for example;
Entity structure table (for student):
property_name entity_key
name student
age student
school student
photo student
Entity instances table :
instance entity_key
joe,19,nyhigh,joe.jpg student
What about the classes with whom i would create instances of these records? (?auto generated classes?) (?a class with a List property in which i would separate the 'joe,12,nyhigh,joe.jpg' string?) Has anyone met with this type of problem before?
I will develop the application in asp.net C#.