执行批量复制时出现以下错误。
System.InvalidOperationException
The given value of type String from the data source cannot be converted to
type decimal of the specified target column.
我使用以下代码。
DataTable empTable = DataTemplate.GetEmployees();
DataRow row;
for (int i = 0; i < gv.Rows.Count;i++ )
{
row = empTable.NewRow();
string empName = gv.DataKeys[i].Values[0].ToString(); //first key
string hourSalary = gv.DataKeys[i].Values[1].ToString(); //second key
row["Emp_Name"] = empName;
row["Hour_Salary"] = Convert.ToDecimal(hourSalary);
row["Advance_amount"] = Convert.ToDecimal(0);
row["Created_Date"] = Convert.ToDateTime(System.DateTime.Now.ToString());
row["Created_By"] = Convert.ToInt64(1);
row["Is_Deleted"] = Convert.ToInt64(0);
empTable.Rows.Add(row);
}
InsertintoEmployees(empTable, "Employee");
上述字段的我的SQL数据类型是:
Emp_Name nvarchar(50) ,
Hour_Salary numeric(18, 2),
Advance_amount numeric(18, 2),
Created_Date datetime,
Created_By numeric(18, 0),
Is_Deleted numeric(18, 0)
我不知道我做错了什么。
答案 0 :(得分:0)
您的hourSalary变量是一个字符串,您稍后会尝试将其转换为Decimal,但这会失败。
很可能你有一个空字符串值或无效值。
根据您的要求,您必须决定如何处理无效值。除了失败之外,您基本上有两个选项:存储为默认值(0可能?)或存储为空值。
如果要存储默认值,则可以在转换薪水时尝试以下操作:
string hourSalary = gv.DataKeys[i].Values[1].ToString();
double salary = 0;
if (!double.TryParse(hourSalary, out salary))
{
salary = 0; // Set your default value here
}
row["Hour_Salary"] = salary;
这将确保您获得存储在Hour_Salary列中的有效小数值。
如果要存储空值,则必须稍微更改代码:
string hourSalary = gv.DataKeys[i].Values[1].ToString();
double salary;
object salaryValue;
if (double.TryParse(hourSalary, out salary))
{
salaryValue = salary;
}
else
{
salaryValue = DBNull.Value; // Store as a null
}
row["Hour_Salary"] = salaryValue;
在此示例中,我们执行相同的TryParse,但如果失败,则存储DBNull.Value而不是默认的0值。