How to build Master-Detail DataSet's in C#.NET
Hi everybody
As you know in Delphi we can have Master-Detail DataSet's
for example for AdoDataSet we have:
AdoDataSet1.MasterFields :='Fields List';
AdoDataSet1.IndexFieldName:='Fields List';
AdoDataSet1.DataSource:='Master Dataset's Datasource';
now i want to know how can i implement such a Master Detail Situation in C#.NET ? i need a code snippet.
Any help greatly would be appreciated.
Kind Regards.
As you know in Delphi we can have Master-Detail DataSet's
for example for AdoDataSet we have:
AdoDataSet1.MasterFields :='Fields List';
AdoDataSet1.IndexFieldName:='Fields List';
AdoDataSet1.DataSource:='Master Dataset's Datasource';
now i want to know how can i implement such a Master Detail Situation in C#.NET ? i need a code snippet.
Any help greatly would be appreciated.
Kind Regards.
Comments
Just idea. I did not test this code yet.