Hi,
Is it possible to create a relationships between two tables in a Dataset, If yes then how can we do that.
Thanks
Soara
We can create a relationship between two tables which are in DataSet.
try ths code
ds.Relation.Add("RelationshipeName",ds.Table[0].Columns["CommanColumnName"],ds.Table[1].Columns["CommanColumnName"]);
I hope this will work fine.
R.Eswaran.