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.220-beta+a56b2444ff27b37e053039e60f062b99378309bd
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