Hi all,
I have two tables: Resources and Skill Sets. The relation between Resources and Skill Sets is 1:N, meaning that one resource (employee) can have many skill sets. Skill set is defined as a combination of skill level and skill name, e.g. 1-Beginner Azure VMs.
After a user creates a resource inside the app, they have to add at least one skill set to that resource. All that is working perfectly fine and I am able to relate any number of skill sets to the resource using ForAll and Patch function.
As you can see Resource with the ID: 978dff0f-9766-ee11-9ae7-6045bdd62e33 has three different skill sets:
Resource table

Skill Set table

However, I also need to concatenate all those skill sets for each resource and save it inside Resource table as a string in 'Skill Set' column (the empty one). I've tried using the same logic as with relating resources with skill sets (ForAll and Patch functions), but it doesn't work.
Any advice is appreciated.
Thank you.
Best