Click or drag to resize

ITableOperationsGetPrimaryKeys(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.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
Syntax
Object[] GetPrimaryKeys(
	DataRow row
)
View Source

Parameters

row  DataRow
DataRow of queried data.

Return Value

Object
Primary key values from the specified row.
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