Synchronization code

This commit is contained in:
sunkaixuan
2023-11-20 03:36:06 +08:00
parent 27b5373a47
commit 06db3277be
2 changed files with 3 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ namespace SqlSugar
public bool EnableModelFuncMappingColumn { get; set; } public bool EnableModelFuncMappingColumn { get; set; }
public bool EnableOracleIdentity { get; set; } public bool EnableOracleIdentity { get; set; }
public bool EnableCodeFirstUpdatePrecision { get; set; } public bool EnableCodeFirstUpdatePrecision { get; set; }
public bool SqliteCodeFirstEnableDropColumn { get; set; }
public bool IsCorrectErrorSqlParameterName { get; set; } public bool IsCorrectErrorSqlParameterName { get; set; }
} }
} }

View File

@@ -525,7 +525,8 @@ namespace SqlSugar
EnableCodeFirstUpdatePrecision=it.MoreSettings.EnableCodeFirstUpdatePrecision, EnableCodeFirstUpdatePrecision=it.MoreSettings.EnableCodeFirstUpdatePrecision,
SqliteCodeFirstEnableDefaultValue=it.MoreSettings.SqliteCodeFirstEnableDefaultValue, SqliteCodeFirstEnableDefaultValue=it.MoreSettings.SqliteCodeFirstEnableDefaultValue,
SqliteCodeFirstEnableDescription=it.MoreSettings.SqliteCodeFirstEnableDescription, SqliteCodeFirstEnableDescription=it.MoreSettings.SqliteCodeFirstEnableDescription,
IsCorrectErrorSqlParameterName = it.MoreSettings.IsCorrectErrorSqlParameterName IsCorrectErrorSqlParameterName = it.MoreSettings.IsCorrectErrorSqlParameterName,
SqliteCodeFirstEnableDropColumn=it.MoreSettings.SqliteCodeFirstEnableDropColumn
}, },
SqlMiddle = it.SqlMiddle == null ? null : new SqlMiddle SqlMiddle = it.SqlMiddle == null ? null : new SqlMiddle