A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
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.