mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 01:58:13 +08:00
-
This commit is contained in:
@@ -8,7 +8,7 @@ using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
namespace SqlSugar
|
||||
{
|
||||
public class RewritableMethods : IRewritableMethods
|
||||
public class ContextMethods : IRewritableMethods
|
||||
{
|
||||
#region DataReader
|
||||
|
@@ -169,7 +169,7 @@
|
||||
<Compile Include="Utilities\UtilConvert.cs" />
|
||||
<Compile Include="Utilities\UtilMethods.cs" />
|
||||
<Compile Include="Utilities\UtilExceptions.cs" />
|
||||
<Compile Include="Infrastructure\RewritableMethods.cs" />
|
||||
<Compile Include="Infrastructure\ContextMethods.cs" />
|
||||
<Compile Include="Realization\SqlServer\CodeFirst\SqlServerCodeFirst.cs" />
|
||||
<Compile Include="Realization\SqlServer\SqlBuilder\SqlServerUpdateBuilder.cs" />
|
||||
<Compile Include="Realization\SqlServer\DbBind\SqlServerDbBind.cs" />
|
||||
|
@@ -78,7 +78,7 @@ namespace SqlSugar
|
||||
get
|
||||
{
|
||||
if (base._RewritableMethods == null)
|
||||
base._RewritableMethods = new RewritableMethods();
|
||||
base._RewritableMethods = new ContextMethods();
|
||||
return _RewritableMethods;
|
||||
}
|
||||
set { base._RewritableMethods = value; }
|
||||
|
Reference in New Issue
Block a user