以为我会在这里付出我的两分钱。与其使用需要时间和计算性能的排序算法,不如倒转将数据添加到数据对象的方式。
这不适用于每个人的场景 - 但对我自己来说,效果很好。
我有一个按升序列出项目的数据库,但是为了便于使用,我需要反转人们查看数据的方式(DESC),以便最新的输入显示在顶部,而不是列表的底部.
所以,我只是改变了我的 for 循环,所以它不是从 0 -> 向上工作,而是从数据表的长度开始(-1 停止溢出),然后在 >= 到 0 时停止;
private Dictionary<string, string> GetComboData(string table, int column, bool id, int idField = 0)
{
SqlClass sql = new SqlClass(database);
Dictionary<string, string> comboBoxData = new Dictionary<string, string>();
if (sql.connectedToServer)
{
sql.SelectResults(SQLCommands.Commands.SelectAll(table));
for (int i = sql.table.Rows.Count-1; i >= 0; i--)
{
string tool = sql.table.Rows[i].ItemArray.Select(x => x.ToString()).ToArray()[column];
string ID = sql.table.Rows[i].ItemArray.Select(x => x.ToString()).ToArray()[idField];
comboBoxData.Add(ID, tool);
}
}
return comboBoxData;
}