dt = getDetailsOfEmplyoeesMonth(getCurrentEmpId(), loc_id, day_type)
retVal = GetJSONString(dt)
dt = getPendingLeaveDetails(leave_id)
retVal1 = GetJSONString_reg(dt)
retVal = retVal +retVal1
这种连接不起作用!
答案 0 :(得分:2)
而不是使用GetJSONString
尝试在数据表上使用合并,如下所示:
dt = getDetailsOfEmplyoeesMonth(getCurrentEmpId(), loc_id, day_type)
dt1 = getPendingLeaveDetails(leave_id)
dt.Merge(dt1);
注意:DataTable
的列名应该相同
了解更多详情MSDN
我希望这可以帮到你