Method | Description | |
---|---|---|
Add ( |
Used internally by Tiraggo. This should never be called by user code
|
|
FindByColumnName ( string columnName ) : |
Searches for an tgColumnMetadata by the propery name. This method is the same as using the indexer.
|
|
FindByPropertyName ( string propertyName ) : |
Searches for an tgColumnMetadata by the propery name.
|
|
GetEnumerator ( ) : IEnumerator |
Supports the foreach() syntax over the collection.
|
|
tgColumnMetadataCollection ( ) : System | ||
this ( System columnName ) : |
Provides direct access into the collection by column name.
|
public Add ( |
||
column | The new tgColumnMetadata to add to the array | |
return | void |
public FindByColumnName ( string columnName ) : |
||
columnName | string | The high level PropertyName, for example, Employees.ColumnNames.LastName |
return |
public FindByPropertyName ( string propertyName ) : |
||
propertyName | string | The high level PropertyName, for example, Employees.PropertyNames.LastName |
return |
public tgColumnMetadataCollection ( ) : System | ||
return | System |
public this ( System columnName ) : |
||
columnName | System | The name of the desired column. This parameter is expected /// to be the physical name of the column as in the table or view, for example, /// Employees.ColumnNames.LastName |
return |