V
Vinay Bhushan
Child Dataset
{
i int;
j string;
}
Master Dataset
{
i int;
j String;
k float;
}
childDataset. rows = 10,
masterDataset.rows = 20;
i want to look that the child dataset is contained in the master
dataset or not.
Note that the schema of the master set is not the same as schema of
child but child schema is contained in the master schema.
the intersection of these two would lead in 8 rows which match
right of would give me a 2 rows.
left of would give me a 12 rows.
is there any class already available which does this for me in C# or
should i be looking for writing my own crap logic to do this.
If its available i would like to use the best code.
Appriciate your help in regard to this.
Vinay
{
i int;
j string;
}
Master Dataset
{
i int;
j String;
k float;
}
childDataset. rows = 10,
masterDataset.rows = 20;
i want to look that the child dataset is contained in the master
dataset or not.
Note that the schema of the master set is not the same as schema of
child but child schema is contained in the master schema.
the intersection of these two would lead in 8 rows which match
right of would give me a 2 rows.
left of would give me a 12 rows.
is there any class already available which does this for me in C# or
should i be looking for writing my own crap logic to do this.
If its available i would like to use the best code.
Appriciate your help in regard to this.
Vinay