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 |
None | No specific MySQL strategy. |