I've recently changed the names of some of my columns in my database. I've updated my dataset in the Visual Studios designer to match those name. Yet I'm still finding lines like this in my XSD file:
<Mapping SourceColumn="OldColumnName" DataSetColumn="NewColumnName" />
Also in my .Designer.cs class:
tableMapping.ColumnMapping.Add("OldColumnName", "NewColumnName");
How does one get rid of these?
<Mapping SourceColumn="OldColumnName" DataSetColumn="NewColumnName" />
Also in my .Designer.cs class:
tableMapping.ColumnMapping.Add("OldColumnName", "NewColumnName");
How does one get rid of these?