Show / Hide Table of Contents

Class Identity

The identity properties of a table, if any.

Inheritance
object
Identity
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.NosqlService.Models
Assembly: OCI.DotNetSDK.Nosql.dll
Syntax
public class Identity

Properties

ColumnName

Declaration
[JsonProperty(PropertyName = "columnName")]
public string ColumnName { get; set; }
Property Value
Type Description
string

The name of the identity column.

IsAlways

Declaration
[JsonProperty(PropertyName = "isAlways")]
public bool? IsAlways { get; set; }
Property Value
Type Description
bool?

True if the identity value is GENERATED ALWAYS.

IsNull

Declaration
[JsonProperty(PropertyName = "isNull")]
public bool? IsNull { get; set; }
Property Value
Type Description
bool?

True if the identity value is GENERATED BY DEFAULT ON NULL.

In this article
Back to top