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.284-beta+805ed69bbaa748bda5f49830845a2ffff2791ae0
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