Determines the strategy used to generate new identity values.
| C# | Visual Basic |
public enum IdentityMethod
Public Enumeration IdentityMethod
| Member | Description |
|---|---|
| KeyTable |
Uses the Key Table (hilo) pattern to efficiently produce database unique integer keys.
|
| Guid |
Uses NewGuid()()() |
| Sequence |
Uses a database Sequence object like that supported on Oracle and PostgreSQL.
|
| IdentityColumn |
Uses an auto incrementing database identity column.
|