Show / Hide Table of Contents

    Enum AutoIncrementMethodType

    Type of primary key auto increment method.

    Namespace: Kros.KORM.Metadata
    Assembly: Kros.KORM.dll
    Syntax
    public enum AutoIncrementMethodType

    Fields

    Name Description
    Custom

    KORM generate primary key for entity.

    Identity

    Sql server generates the primary key and KORM fills it into the entity. When calling BulkInsert() keys are not fill back to the entities.

    None

    The primary key is not auto incremented.

    Back to top KROS a.s.