DataAccessMoveRow Method (Int32, RowMoveAction, String, String, String, FilterCriteriaCollection, KeyedList, Boolean) |
Moves a row order into a database table
Namespace:
WorkflowGen.My.Data
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax public void MoveRow(
int identifier,
RowMoveAction moveAction,
string columnName,
string[] rowIdentifierColumns,
string tableName,
FilterCriteriaCollection filterCriterias,
KeyedList sortColumns,
bool reorder
)
Public Sub MoveRow (
identifier As Integer,
moveAction As RowMoveAction,
columnName As String,
rowIdentifierColumns As String(),
tableName As String,
filterCriterias As FilterCriteriaCollection,
sortColumns As KeyedList,
reorder As Boolean
)
Parameters
- identifier
- Type: SystemInt32
A row identifier - moveAction
- Type: WorkflowGen.My.DataRowMoveAction
A move action - columnName
- Type: SystemString
A column to re-order(must be a numeric column) - rowIdentifierColumns
- Type: SystemString
A set of columns name representing a unique row identifier for the table - tableName
- Type: SystemString
A table to impact - filterCriterias
- Type: WorkflowGen.My.DataFilterCriteriaCollection
A collection of filter criterias - sortColumns
- Type: WorkflowGen.My.CollectionsKeyedList
A collection of sort orders - reorder
- Type: SystemBoolean
Determines whether or not to re-order the resultset according to the given sort columns before moving the row
See Also