System.Data.Tests.DataRowTest2.testMore C# (CSharp) Method

testMore() private method

private testMore ( ) : void
return void
        public void testMore()
        {
            DataSet ds = DataProvider.CreateForigenConstraint();
            DataRow drParent = ds.Tables[0].Rows[0];
            //DataRow[] drArray =  ds.Tables[1].Rows[0].GetParentRows(ds.Tables[1].ParentRelations[0]);
            ds.Tables[1].Rows[0].SetParentRow(drParent);
        }
DataRowTest2