C# Class Tiraggo.Interfaces.tgColumnMetadataCollection

Inheritance: IEnumerable
Show file Open project: BrewDawg/Tiraggo Class Usage Examples

Public Properties

Property Type Description
AddedBy AuditingInfo
DateAdded SpecialDate
DateModified SpecialDate
ModifiedBy AuditingInfo

Public Methods

Method Description
Add ( tgColumnMetadata column ) : void

Used internally by Tiraggo. This should never be called by user code

FindByColumnName ( string columnName ) : tgColumnMetadata

Searches for an tgColumnMetadata by the propery name. This method is the same as using the indexer.

FindByPropertyName ( string propertyName ) : tgColumnMetadata

Searches for an tgColumnMetadata by the propery name.

GetEnumerator ( ) : IEnumerator

Supports the foreach() syntax over the collection.

IsSpecialColumn ( tgColumnMetadata col ) : bool
tgColumnMetadataCollection ( ) : System
this ( System columnName ) : tgColumnMetadata

Provides direct access into the collection by column name.

Method Details

Add() public method

Used internally by Tiraggo. This should never be called by user code
public Add ( tgColumnMetadata column ) : void
column tgColumnMetadata The new tgColumnMetadata to add to the array
return void

FindByColumnName() public method

Searches for an tgColumnMetadata by the propery name. This method is the same as using the indexer.
public FindByColumnName ( string columnName ) : tgColumnMetadata
columnName string The high level PropertyName, for example, Employees.ColumnNames.LastName
return tgColumnMetadata

FindByPropertyName() public method

Searches for an tgColumnMetadata by the propery name.
public FindByPropertyName ( string propertyName ) : tgColumnMetadata
propertyName string The high level PropertyName, for example, Employees.PropertyNames.LastName
return tgColumnMetadata

GetEnumerator() public method

Supports the foreach() syntax over the collection.
public GetEnumerator ( ) : IEnumerator
return IEnumerator

IsSpecialColumn() public method

public IsSpecialColumn ( tgColumnMetadata col ) : bool
col tgColumnMetadata
return bool

tgColumnMetadataCollection() public method

public tgColumnMetadataCollection ( ) : System
return System

this() public method

Provides direct access into the collection by column name.
public this ( System columnName ) : tgColumnMetadata
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 tgColumnMetadata

Property Details

AddedBy public property

public AuditingInfo AddedBy
return AuditingInfo

DateAdded public property

public SpecialDate DateAdded
return SpecialDate

DateModified public property

public SpecialDate DateModified
return SpecialDate

ModifiedBy public property

public AuditingInfo ModifiedBy
return AuditingInfo