Hello everyone. I ran into a situation in which I haven't been before and was hoping for some help. First I will say what I have and then what it is I want at the end.
I have an entity with various attributes. So after someone saves I have this structure:
[A]
-(a)
-(b)
-(c)
-(d)
new save produces:
-(a)
-(b)
-(c)
-(d)
and so on. Well the problem is that one of the attributes is a records keeping one. I have to store more than one variable under one attribute multiple times, like this.
[A]
-(a)
-(b)
--(a)
--(b)
--(c)
-(c)
-(d)
What I found from my research is something about relationship but im not to sure if this will do what I want or how it works. Do I have to make 2 entities? the one I have now and "Records"? How does it know if the records belong to [A] or ? Btw, the information in the entity is user inputted and the records will also be user inputted information. In a little story type, I can produce the filing cabinets and the folders in the filing cabinets, but i need to now produce the multiple files inside the folders. If that makes sense. Thanks.
I have an entity with various attributes. So after someone saves I have this structure:
[A]
-(a)
-(b)
-(c)
-(d)
new save produces:
-(a)
-(b)
-(c)
-(d)
and so on. Well the problem is that one of the attributes is a records keeping one. I have to store more than one variable under one attribute multiple times, like this.
[A]
-(a)
-(b)
--(a)
--(b)
--(c)
-(c)
-(d)
What I found from my research is something about relationship but im not to sure if this will do what I want or how it works. Do I have to make 2 entities? the one I have now and "Records"? How does it know if the records belong to [A] or ? Btw, the information in the entity is user inputted and the records will also be user inputted information. In a little story type, I can produce the filing cabinets and the folders in the filing cabinets, but i need to now produce the multiple files inside the folders. If that makes sense. Thanks.