C# 클래스 Tiraggo.DynamicQuery.tgColumnMetadataCollection

상속: IEnumerable
파일 보기 프로젝트 열기: BrewDawg/Tiraggo.EF

공개 메소드들

메소드 설명
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.

tgColumnMetadataCollection ( ) : System
this ( System columnName ) : tgColumnMetadata

Provides direct access into the collection by column name.

메소드 상세

Add() 공개 메소드

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
리턴 void

FindByColumnName() 공개 메소드

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
리턴 tgColumnMetadata

FindByPropertyName() 공개 메소드

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

GetEnumerator() 공개 메소드

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

tgColumnMetadataCollection() 공개 메소드

public tgColumnMetadataCollection ( ) : System
리턴 System

this() 공개 메소드

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
리턴 tgColumnMetadata