Certain Methods Renamed

Issue

A few BaseClasses API methods were renamed.  Many of the renamed methods' old names are still supported as "obsolete" methods.  For example, some "UpdateData()" methods were renamed to "SaveData()".

Consequences

For example, you may see compilation errors like these as result of the renaming changes:

C:\SampleApps2.0\Support\StandardPages\AddAlternateCustomers.aspx.vb(501) : warning BC40000: 'Public Overridable NotOverridable Sub Create()' is obsolete: 'This member will be removed from future versions. Use the Save method instead.'

     

               relatedCustomrRec.Create()

For this example, the solution is to CType the IUserTable / IUserIdentityTable to "{MyTableName}Table".

See Also

Version 2.0 Application Migration