diff --git a/src/FirebirdSql.EntityFrameworkCore.Firebird/Extensions/FbPropertyExtensions.cs b/src/FirebirdSql.EntityFrameworkCore.Firebird/Extensions/FbPropertyExtensions.cs index 243fb358..62fa02b6 100644 --- a/src/FirebirdSql.EntityFrameworkCore.Firebird/Extensions/FbPropertyExtensions.cs +++ b/src/FirebirdSql.EntityFrameworkCore.Firebird/Extensions/FbPropertyExtensions.cs @@ -33,6 +33,7 @@ public static FbValueGenerationStrategy GetValueGenerationStrategy(this IPropert } if (property.ValueGenerated != ValueGenerated.OnAdd + || property.IsForeignKey() || property.TryGetDefaultValue(out _) || property.GetDefaultValueSql() != null || property.GetComputedColumnSql() != null) @@ -63,6 +64,7 @@ public static FbValueGenerationStrategy GetValueGenerationStrategy(this IMutable } if (property.ValueGenerated != ValueGenerated.OnAdd + || property.IsForeignKey() || property.TryGetDefaultValue(out _) || property.GetDefaultValueSql() != null || property.GetComputedColumnSql() != null) @@ -93,6 +95,7 @@ public static FbValueGenerationStrategy GetValueGenerationStrategy(this IConvent } if (property.ValueGenerated != ValueGenerated.OnAdd + || property.IsForeignKey() || property.TryGetDefaultValue(out _) || property.GetDefaultValueSql() != null || property.GetComputedColumnSql() != null)