asp.net.ph

DataTableMapping.SourceTable Property

System.Data.Common Namespace   DataTableMapping Class


Sets or retrieves the case-sensitive table name from a data source to map from.

Syntax


Script DataTableMapping.SourceTable [ = strName ]

Property Value


strName The case-sensitive table name from a data source to map from.

The property is read/write with no default value.

Implements

ITableMapping.SourceTable

Example

The following example shows one way of setting the SourceTable property.

void CreateDataTableMapping ( ) {
   DataTableMapping myMap = new DataTableMapping ( );
   myMap.SourceTable = "Description";
   myMap.DataSetTable = "DataDescription";
}
  C# VB

See Also

DataTableMapping Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph