Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing mapping in dataset

Status
Not open for further replies.

gib99

Programmer
Mar 23, 2012
51
CA
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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top