Click or drag to resize

TableOperationsTGetPrimaryKeys(DataRow) Method

Gets the primary key values from the specified row.

Namespace: GSF.Data.Model
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.275-beta+89764ccfd98a5e76971bbd58cae85aa2e8f59fbd
Syntax
public Object[] GetPrimaryKeys(
	DataRow row
)
View Source

Parameters

row  DataRow
DataRow of queried data.

Return Value

Object
Primary key values from the specified row.

Implements

ITableOperationsGetPrimaryKeys(DataRow)
Remarks
Function returns raw data from row without interpretation, it may be necessary to call GetInterpretedFieldValue(String, Object) for models with primary key fields that are marked with either EncryptDataAttribute or FieldDataTypeAttribute.
See Also