我最近在一次测试中被问到这个问题,我没有通过。对于我的生活,我无法发现问题所在。这可能是非常明显的事情,但即便是我的同事也无法发现它。我能想到的最好的问题是瓶颈和参数命名不一致的问题!我把它归咎于我多年没有做任何vb.net的事实,这些天我一直在做C#:)
Private Function sorttable(ByVal dt As DataTable, ByVal sorttype$, ByVal sort_direction$) As DataTable
Dim dv As DataView
Dim dt2 As DataTable
dt2 = dt.Clone
dt2.Merge(dt)
dv = dt2.DefaultView
dv.Sort = sorttype & " " & sort_direction
Return dv.ToTable()
End Function
问题:这个函数虽然能成功地对数据表进行排序,但它有一个主要问题。问题是什么?使用LINQ在C#或VB.Net中重写函数。
答案 0 :(得分:0)
是否克隆了DataTable,然后将其与自己的克隆合并?很奇怪..
答案 1 :(得分:0)
在c#中使用
使用类型化数据集 在精确数据类型中创建数据表
for example i have create a dsAppointment
DsAppointment dsAppointmentTmp = new DsAppointment();
DsAppointment dsAppointment = new DsAppointment();
//add all appointment
dsAppointmentTmp.Appointment.AddAppointmentRow(name,start,end,body)
//use select(filter,sort(name of columns)
DataRow[] rows1 = dsAppointmentTmp.Tables[0].Select(string.Empty, dsAppointmentTmp.Tables[0].Columns[1].ToString());
foreach (DataRow thisRow in rows1)
{
dsAppointment.Tables[0].Rows.Add(thisRow.ItemArray);
}
//return dsAppointment sorted
return dsAppointment;