Show / Hide Table of Contents

Interface IRowSelector

Builder interface to select the rows the combine operation will process.

Namespace: Nett
Assembly: Nett.dll
Syntax
public interface IRowSelector

Methods

| Improve this Doc View Source

ForAllSourceRows()

All rows existing in source will be processed. New rows will be added to the result table. Rows already existing in the target table will be replaced.

Declaration
ITableCombiner ForAllSourceRows()
Returns
Type Description
ITableCombiner

The built combine operation.

| Improve this Doc View Source

ForAllTargetRows()

All rows in the target table will be overwritten by the equivalent rows from the source table.

Declaration
ITableCombiner ForAllTargetRows()
Returns
Type Description
ITableCombiner

The built combine operation.

| Improve this Doc View Source

ForRowsOnlyInSource()

Adds all existing rows from the target table and rows not existing yet in the target table to the resulting table. Effectively this is an add new rows operation.

Declaration
ITableCombiner ForRowsOnlyInSource()
Returns
Type Description
ITableCombiner

The built combine operation.

  • Improve this Doc
  • View Source
Back to top Generated by DocFX