Search Results for

    Show / Hide Table of Contents

    Enum MySQLValueGenerationStrategy

    Defines two strategies to use across the EF Core stack when generating key values from MySQL database columns.

    Namespace: MySql.EntityFrameworkCore.Metadata
    Assembly: MySql.EntityFrameworkCore.dll
    Version: 9.3.0
    Syntax
    public enum MySQLValueGenerationStrategy

    Fields

    Name Description
    ComputedColumn

    Values of a generated column are computed from an expression included in the column definition.

    IdentityColumn

    A pattern that uses a standard MySQL Identity column in the same way as EF6 and previous frameworks.

    None

    No specific MySQL strategy.

    In This Article
    • Fields
    Back to top Copyright © 2021, 2025, Oracle and/or its affiliates.