TrackingKeyType Enumeration
Specifies the type of key used to identify tracking data.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Enumeration TrackingKeyType
'Usage
Dim instance As TrackingKeyType
public enum TrackingKeyType
public enum class TrackingKeyType
type TrackingKeyType
public enum TrackingKeyType
Members
Member name | Description | |
---|---|---|
None | This value is reserved for use by the tracking infrastructure. Do not use it in your code. | |
PrimaryKey | Uniquely identifies rows by using the primary key defined on the table. | |
Guid | Uniquely identifies rows by using the global unique identifier column defined on the table. This is a column of uniqueidentifier data type that is defined with the ROWGUIDCOL attribute. | |
Max | This value is reserved for use by the tracking infrastructure. Do not use it in your code. |
Remarks
Tracking data must be uniquely identified by the tracking system. The TrackingKeyType values specify whether the primary key or the global unique identifier column of tracked rows is used to uniquely identify each row.