mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Synchronization code
This commit is contained in:
parent
13c3dcac91
commit
702e4dc074
@ -272,6 +272,10 @@ namespace SqlSugar
|
||||
result.SqlBuilder.QueryBuilder.EntityType = typeof(T);
|
||||
result.SqlBuilder.QueryBuilder.EntityName = typeof(T).Name;
|
||||
result.SqlBuilder.QueryBuilder.LambdaExpressions = InstanceFactory.GetLambdaExpressions(CurrentConnectionConfig);
|
||||
if (StaticConfig.CompleteQueryableFunc != null)
|
||||
{
|
||||
StaticConfig.CompleteQueryableFunc(result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
protected InsertableProvider<T> CreateInsertable<T>(T[] insertObjs) where T : class, new()
|
||||
@ -288,6 +292,10 @@ namespace SqlSugar
|
||||
sqlBuilder.InsertBuilder.LambdaExpressions = InstanceFactory.GetLambdaExpressions(this.CurrentConnectionConfig);
|
||||
sqlBuilder.Context = result.SqlBuilder.InsertBuilder.Context = this;
|
||||
result.Init();
|
||||
if (StaticConfig.CompleteInsertableFunc != null)
|
||||
{
|
||||
StaticConfig.CompleteInsertableFunc(result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
protected DeleteableProvider<T> CreateDeleteable<T>() where T : class, new()
|
||||
@ -301,6 +309,10 @@ namespace SqlSugar
|
||||
sqlBuilder.DeleteBuilder.Builder = sqlBuilder;
|
||||
sqlBuilder.DeleteBuilder.LambdaExpressions = InstanceFactory.GetLambdaExpressions(this.CurrentConnectionConfig);
|
||||
sqlBuilder.Context = result.SqlBuilder.DeleteBuilder.Context = this;
|
||||
if (StaticConfig.CompleteDeleteableFunc != null)
|
||||
{
|
||||
StaticConfig.CompleteDeleteableFunc(result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
protected UpdateableProvider<T> CreateUpdateable<T>(T[] UpdateObjs) where T : class, new()
|
||||
@ -317,6 +329,10 @@ namespace SqlSugar
|
||||
sqlBuilder.UpdateBuilder.LambdaExpressions = InstanceFactory.GetLambdaExpressions(this.CurrentConnectionConfig);
|
||||
sqlBuilder.Context = result.SqlBuilder.UpdateBuilder.Context = this;
|
||||
result.Init();
|
||||
if (StaticConfig.CompleteUpdateableFunc != null)
|
||||
{
|
||||
StaticConfig.CompleteUpdateableFunc(result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -28,6 +28,10 @@ namespace SqlSugar
|
||||
this.ContextID = Guid.NewGuid();
|
||||
Check.ArgumentNullException(config, "config is null");
|
||||
CheckDbDependency(config);
|
||||
if (StaticConfig.CompleteDbFunc != null)
|
||||
{
|
||||
StaticConfig.CompleteDbFunc(this);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace SqlSugar
|
||||
@ -10,5 +11,11 @@ namespace SqlSugar
|
||||
public static Func<string,string> Decode{ get; set; }
|
||||
public const string CodeFirst_BigString = "varcharmax,longtext,text,clob";
|
||||
public static Func<long> CustomSnowFlakeFunc;
|
||||
|
||||
public static Action<object> CompleteQueryableFunc;
|
||||
public static Action<object> CompleteInsertableFunc;
|
||||
public static Action<object> CompleteUpdateableFunc;
|
||||
public static Action<object> CompleteDeleteableFunc;
|
||||
public static Action<ISqlSugarClient> CompleteDbFunc;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user