mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 18:22:23 +08:00
-
This commit is contained in:
@@ -187,7 +187,7 @@ namespace SqlSugar
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Protected Methods
|
#region Protected Methods
|
||||||
protected void PreToSql()
|
protected virtual void PreToSql()
|
||||||
{
|
{
|
||||||
#region Identities
|
#region Identities
|
||||||
if (!IsOffIdentity)
|
if (!IsOffIdentity)
|
||||||
|
@@ -7,42 +7,12 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
public class OracleInsertable<T> : InsertableProvider<T> where T : class, new()
|
public class OracleInsertable<T> : InsertableProvider<T> where T : class, new()
|
||||||
{
|
{
|
||||||
public override int ExecuteCommand()
|
|
||||||
{
|
|
||||||
InsertBuilder.IsReturnIdentity = false;
|
|
||||||
PreToSql();
|
|
||||||
string sql = InsertBuilder.ToSqlString();
|
|
||||||
RestoreMapping();
|
|
||||||
return Ado.ExecuteCommand(sql, InsertBuilder.Parameters == null ? null : InsertBuilder.Parameters.ToArray());
|
|
||||||
}
|
|
||||||
|
|
||||||
public override KeyValuePair<string, List<SugarParameter>> ToSql()
|
|
||||||
{
|
|
||||||
InsertBuilder.IsReturnIdentity = true;
|
|
||||||
PreToSql();
|
|
||||||
string sql = InsertBuilder.ToSqlString();
|
|
||||||
RestoreMapping();
|
|
||||||
return new KeyValuePair<string, List<SugarParameter>>(sql, InsertBuilder.Parameters);
|
|
||||||
}
|
|
||||||
public override int ExecuteReturnIdentity()
|
|
||||||
{
|
|
||||||
InsertBuilder.IsReturnIdentity = true;
|
|
||||||
PreToSql();
|
|
||||||
string sql = InsertBuilder.ToSqlString();
|
|
||||||
RestoreMapping();
|
|
||||||
return Ado.GetInt(sql, InsertBuilder.Parameters == null ? null : InsertBuilder.Parameters.ToArray());
|
|
||||||
}
|
|
||||||
public override long ExecuteReturnBigIdentity()
|
|
||||||
{
|
|
||||||
InsertBuilder.IsReturnIdentity = true;
|
|
||||||
PreToSql();
|
|
||||||
string sql = InsertBuilder.ToSqlString();
|
|
||||||
RestoreMapping();
|
|
||||||
return Convert.ToInt64(Ado.GetScalar(sql, InsertBuilder.Parameters == null ? null : InsertBuilder.Parameters.ToArray()));
|
|
||||||
}
|
|
||||||
protected override List<string> GetIdentityKeys()
|
protected override List<string> GetIdentityKeys()
|
||||||
{
|
{
|
||||||
return this.EntityInfo.Columns.Where(it => it.OracleSequenceName.IsValuable()).Select(it => it.DbColumnName).ToList();
|
return this.EntityInfo.Columns.Where(it => it.OracleSequenceName.IsValuable()).Select(it => it.DbColumnName).ToList();
|
||||||
}
|
}
|
||||||
|
protected override void PreToSql() {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user