C# Class Rhino.Etl.Core.Operations.DocDbInputCommandOperation

Generic input command operation
Inheritance: AbstractDocumentDbOperation
Mostrar archivo Open project: IntelliTect/rhino-etl

Public Methods

Method Description
DocDbInputCommandOperation ( string endpointUrlName, string endpointKeyName, string documentDatabase, string documentCollection ) : System.Collections.Generic

Initializes a new instance of the DocDbInputCommandOperation class.

Execute ( IEnumerable rows ) : IEnumerable

Executes this operation

Protected Methods

Method Description
CreateRowFromReader ( IDataReader reader ) : Row

Creates a row from the reader.

Method Details

CreateRowFromReader() protected method

Creates a row from the reader.
protected CreateRowFromReader ( IDataReader reader ) : Row
reader IDataReader The reader.
return Row

DocDbInputCommandOperation() public method

Initializes a new instance of the DocDbInputCommandOperation class.
public DocDbInputCommandOperation ( string endpointUrlName, string endpointKeyName, string documentDatabase, string documentCollection ) : System.Collections.Generic
endpointUrlName string >Appsetting key for Url to DocumentDb endpoint.
endpointKeyName string >Appsetting key for Key for DocumentDB
documentDatabase string The Database to query
documentCollection string The DocumentCollection to query
return System.Collections.Generic

Execute() public method

Executes this operation
public Execute ( IEnumerable rows ) : IEnumerable
rows IEnumerable The rows.
return IEnumerable