Hi,
I have simple question.
Let's say there are User and UserSkill aggreagate roots
public class UserSkill{
public string Id{get;set;}
public string Name {get;set;}
}
public class User{
public string Id{get;set;}
public string UserName {get;set;}
public string[] UserSkillIds{get;set;}
}
In this sceneraio supposed as we dont use denormalization. so we only put UserSkillIds to User.
My question is, if i replace UserSkillId with "userskill/" and only store integer value as int[] UserSkillIds, will it run faster on search queries on userskillids?
Thanks.