संपादित करें

इसके माध्यम से साझा किया गया


StoreGeneratedPattern Enum

Definition

Represents an enumeration that specifies three options indicating whether the column in the store schema definition language (SSDL) (.ssdl) needs a value during insert and update operations. ADO.NET reads the value of the column and then stores it in-memory cache.

public enum class StoreGeneratedPattern
public enum StoreGeneratedPattern
type StoreGeneratedPattern = 
Public Enum StoreGeneratedPattern
Inheritance
StoreGeneratedPattern

Fields

Computed 2

A value is generated on both insert and update.

Identity 1

A value is generated on insert and remains unchanged on update.

None 0

A value indicating that it is not a server generated property. This is the default value.

Applies to