My dataset has two tables: Skills and Employee_Skills. Skills has a complete list of SkillName. Employee_Skills has a list of SkillName that an employee has obtained. They are from different databases, and the two tables are filled using dataAdapter with separate DB connections.
Now I want to get a list of those SkillName that are in Skills table, but not in Employee_Skills table. Since the data is already in dataset, I want to get the list from dataset, instead of connecting to two databases again.
How? Thanks.
Now I want to get a list of those SkillName that are in Skills table, but not in Employee_Skills table. Since the data is already in dataset, I want to get the list from dataset, instead of connecting to two databases again.
How? Thanks.