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.245-beta+94213ae9d4d0aa7a2c48e5398b12d267b99f868a
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