我的查询如下:
var rport = from exc in db.Exception_Datas
join emp in db.Emp_infos on exc.Emp_id equals emp.ID
where (exc.Action_date >= frm && exc.Action_date <= to) &&
emp.Branch == cmbBranch.SelectedValue &&
emp.Dept == cmbDept.SelectedValue &&
emp.ID == Convert.ToInt32(cmbEmp.SelectedValue)
select new
{
emp.Emp_name,
emp.ID,
emp.Designation,
emp.Dept,
emp.Branch,
exc.Action_date
};
我正在签约这样的cmbEmp.Items:
var allEmp = from emp in db.Emp_infos select emp;
myItem.Text = "--Select--";
myItem.Value = "0";
cmbEmp.Items.Add(myItem);
foreach (var semp in allEmp)
{
myItem = new RadComboBoxItem();
myItem.Text = semp.Emp_name.ToString();
myItem.Value = semp.ID.ToString();
cmbEmp.Items.Add(myItem);
}
我已经关注了其他一些问题并在SO中发布了SO。但他们中的任何一个都没有帮助我解决问题。我收到了这个错误:
{“输入字符串的格式不正确。”} System.SystemException {System.FormatException}
答案 0 :(得分:3)
问题似乎就在这条线上。 Convert.ToInt32(cmbEmp.SelectedValue)
。在使用linq查询之前,请确保正确解析并解析它。试试这个
int empId;
if (Int32.TryParse(cmbEmp.SelectedValue, out empId))
{
var rport = from exc in db.Exception_Datas
join emp in db.Emp_infos on exc.Emp_id equals emp.ID
where (exc.Action_date >= frm && exc.Action_date <= to) &&
emp.Branch == cmbBranch.SelectedValue &&
emp.Dept == cmbDept.SelectedValue &&
emp.ID == empId
select new
{
emp.Emp_name,
emp.ID,
emp.Designation,
emp.Dept,
emp.Branch,
exc.Action_date
};
}