mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-26 21:53:04 +08:00
-
This commit is contained in:
@@ -73,6 +73,17 @@ namespace SqlSugar
|
||||
this.Context._Ado = value;
|
||||
}
|
||||
}
|
||||
protected IContextMethods ContextRewritableMethods
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.Context._RewritableMethods;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.Context._RewritableMethods = value;
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Init mppingInfo
|
||||
|
||||
@@ -80,14 +80,14 @@ namespace SqlSugar
|
||||
{
|
||||
get
|
||||
{
|
||||
if (this.Context._RewritableMethods == null)
|
||||
if (ContextRewritableMethods == null)
|
||||
{
|
||||
this.Context._RewritableMethods = new ContextMethods();
|
||||
this.Context._RewritableMethods.Context = this.Context;
|
||||
ContextRewritableMethods = new ContextMethods();
|
||||
ContextRewritableMethods.Context = this.Context;
|
||||
}
|
||||
return this.Context._RewritableMethods;
|
||||
return ContextRewritableMethods;
|
||||
}
|
||||
set { this.Context._RewritableMethods = value; }
|
||||
set { ContextRewritableMethods = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user