If a user only has 1 pet, then I could just add the pet properties as a user attribute. But in our case, a user can have as many number of pets. What's the most efficient way of storing this user data?
Is it something Itera.Multiproperty can handle?
Currently I'm thinking of just using DDS with a reference user ID.
I have a pet class.
Pet Class
{
string name;
DateTime birthday;
string species;
string breed;
}
If a user only has 1 pet, then I could just add the pet properties as a user attribute. But in our case, a user can have as many number of pets. What's the most efficient way of storing this user data?
Is it something Itera.Multiproperty can handle?
Currently I'm thinking of just using DDS with a reference user ID.