我在两个表之间输入了具有 1:N 关系的数据集。子表有“顺序”列,我在将数据加载到数据集时用于在 SP 中进行排序(排序依据)。据我了解,使用数据集时无法保证此顺序。我需要父行的 GetChildRows 并确保行按顺序列中定义的特定顺序。现在我执行以下操作:
class Program
{
static void Main(string[] args)
{
DataSet1 ds = new DataSet1();
//load data
DataSet1.ParentTableRow parentRow = ds.ParentTable.FindByID(1);
DataSet1.ChildTableRow[] childRows = parentRow.GetChildTableRows();
Array.Sort<DataSet1.ChildTableRow>(childRows, new ChildTableCoparer());
//Enumerate fields is right order
}
}
public class ChildTableCoparer : IComparer<DataSet1.ChildTableRow>
{
public int Compare(DataSet1.ChildTableRow x, DataSet1.ChildTableRow y)
{
if (x.Order > y.Order) return 1;
if (x.Order < y.Order) return -1;
return 0;
}
}
使用 GetChildRows() 时是否有更好的方法来确保顺序?