Hi,
I have a feaureclass x which is related to a,b,c tables through relationship classes.
I need to join or append the data from a,b,c to featureclass x using arcobjects. How can I achieve this.
My data schema is like
eg:
feature class x:
| oid | FIPSID | name | address
| 1 | 6257 | New I| 65 Street
feature class y:
| oid | LOCUID | CODE| POPULATION
| 1 | 1258 | | 65 | 2568
Relationship Class
| oid | ORIGINID | DESTID
| 1 | 6257 | 1258
How can I join this data?
Regards,
Nigel.