C# 클래스 FdoToolbox.Core.ETL.Specialized.FdoJoinOptions

Controls the FdoJoin operation
상속: IDisposable
파일 보기 프로젝트 열기: jumpinjackie/fdotoolbox 1 사용 예제들

공개 메소드들

메소드 설명
AddLeftProperty ( string propertyName ) : void

Adds a property to the left side of the join

AddRightProperty ( string propertyName ) : void

Adds a property to the right side of the join

Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

FdoJoinOptions ( ) : System

Initializes a new instance of the FdoJoinOptions class.

FdoJoinOptions ( bool owner ) : System

Initializes a new instance of the FdoJoinOptions class.

Reset ( ) : void

Resets this instance.

SetJoinPairs ( NameValueCollection pairs ) : void

Sets the join pair collection

SetLeft ( FdoConnection conn, string schemaName, string className ) : void

Sets the left source of the join

SetRight ( FdoConnection conn, string schemaName, string className ) : void

Sets the right source of the join

SetTarget ( FdoConnection conn, string schemaName, string className ) : void

Sets the target of the join

Validate ( ) : void

Validates these options

비공개 메소드들

메소드 설명
CreateLeftQuery ( ) : FeatureQueryOptions

Creates the query for the left side of the join

CreateRightQuery ( ) : FeatureQueryOptions

Creates the query for the right side of the join

메소드 상세

AddLeftProperty() 공개 메소드

Adds a property to the left side of the join
public AddLeftProperty ( string propertyName ) : void
propertyName string
리턴 void

AddRightProperty() 공개 메소드

Adds a property to the right side of the join
public AddRightProperty ( string propertyName ) : void
propertyName string
리턴 void

Dispose() 공개 메소드

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
리턴 void

FdoJoinOptions() 공개 메소드

Initializes a new instance of the FdoJoinOptions class.
public FdoJoinOptions ( ) : System
리턴 System

FdoJoinOptions() 공개 메소드

Initializes a new instance of the FdoJoinOptions class.
public FdoJoinOptions ( bool owner ) : System
owner bool if set to true this will own the underlying connections and dispose of them when it itself is disposed
리턴 System

Reset() 공개 메소드

Resets this instance.
public Reset ( ) : void
리턴 void

SetJoinPairs() 공개 메소드

Sets the join pair collection
public SetJoinPairs ( NameValueCollection pairs ) : void
pairs System.Collections.Specialized.NameValueCollection
리턴 void

SetLeft() 공개 메소드

Sets the left source of the join
public SetLeft ( FdoConnection conn, string schemaName, string className ) : void
conn FdoToolbox.Core.Feature.FdoConnection
schemaName string
className string
리턴 void

SetRight() 공개 메소드

Sets the right source of the join
public SetRight ( FdoConnection conn, string schemaName, string className ) : void
conn FdoToolbox.Core.Feature.FdoConnection
schemaName string
className string
리턴 void

SetTarget() 공개 메소드

Sets the target of the join
public SetTarget ( FdoConnection conn, string schemaName, string className ) : void
conn FdoToolbox.Core.Feature.FdoConnection
schemaName string
className string
리턴 void

Validate() 공개 메소드

Validates these options
public Validate ( ) : void
리턴 void