C# Class FdoToolbox.Core.ETL.Specialized.FdoJoin

A specialized form of EtlProcess that merges two feature classes into one. The merged class is created before commencing the join
Inheritance: FdoSpecializedEtlProcess
Show file Open project: jumpinjackie/fdotoolbox Class Usage Examples

Public Methods

Method Description
FdoJoin ( FdoJoinOptions options ) : System

Initializes a new instance of the FdoJoin class.

FdoJoin ( FdoJoinOptions options, int reportFrequency ) : System

Initializes a new instance of the FdoJoin class.

GetAllErrors ( ) : IEnumerable
GetDescription ( ) : string

Gets a description of this process

GetFileExtension ( ) : string

Gets the file extension associated with this process. For tasks where CanSave is false, an empty string is returned

Save ( string file, string name ) : void

Saves this process to a file

Protected Methods

Method Description
Initialize ( ) : void

Initializes this instance.

OnFeatureProcessed ( FdoOperationBase op, FdoRow dictionary ) : void

Called when [feature processed].

OnFinishedProcessing ( FdoOperationBase op ) : void

Called when [finished processing].

Private Methods

Method Description
CreateMergedClass ( ClassDefinition leftCls, ClassDefinition rightCls ) : ClassDefinition
PrepareClass ( ClassDefinition cls, ICollection propNames, ICollection joinProps, string prefix, string geomProp ) : void

Method Details

FdoJoin() public method

Initializes a new instance of the FdoJoin class.
public FdoJoin ( FdoJoinOptions options ) : System
options FdoJoinOptions The options.
return System

FdoJoin() public method

Initializes a new instance of the FdoJoin class.
public FdoJoin ( FdoJoinOptions options, int reportFrequency ) : System
options FdoJoinOptions The options.
reportFrequency int The report frequency.
return System

GetAllErrors() public method

public GetAllErrors ( ) : IEnumerable
return IEnumerable

GetDescription() public method

Gets a description of this process
public GetDescription ( ) : string
return string

GetFileExtension() public method

Gets the file extension associated with this process. For tasks where CanSave is false, an empty string is returned
public GetFileExtension ( ) : string
return string

Initialize() protected method

Initializes this instance.
protected Initialize ( ) : void
return void

OnFeatureProcessed() protected method

Called when [feature processed].
protected OnFeatureProcessed ( FdoOperationBase op, FdoRow dictionary ) : void
op FdoOperationBase The op.
dictionary FdoRow The dictionary.
return void

OnFinishedProcessing() protected method

Called when [finished processing].
protected OnFinishedProcessing ( FdoOperationBase op ) : void
op FdoOperationBase The op.
return void

Save() public method

Saves this process to a file
public Save ( string file, string name ) : void
file string The file to save this process to
name string The name of the process
return void