Hi, I'm using Linq to bind a gridview and when I debug I get this exception:
"Input string was not in a correct format."
this function loads with the Form
Code:
    
private void DGVWCcode_Changed()
        {
            SalaryDClassesDataContext dc = new SalaryDClassesDataContext();
            BindingSource bs = new BindingSource();
            var wcmpnnts = from c in dc.Wage_Components
...