StoreGeneratedPattern Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Fields
Name | Value | Description |
---|---|---|
None | 0 | A value indicating that it is not a server generated property. This is the default value. |
Identity | 1 | A value is generated on insert and remains unchanged on update. |
Computed | 2 | A value is generated on both insert and update. |