mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
-
This commit is contained in:
parent
4abcfa1a71
commit
2315c8d973
Binary file not shown.
@ -10,6 +10,9 @@ namespace SqlSugar
|
|||||||
public class ExpressionContext : ExpResolveAccessory
|
public class ExpressionContext : ExpResolveAccessory
|
||||||
{
|
{
|
||||||
#region constructor
|
#region constructor
|
||||||
|
private ExpressionContext() {
|
||||||
|
|
||||||
|
}
|
||||||
public ExpressionContext(Expression expression, ResolveExpressType type)
|
public ExpressionContext(Expression expression, ResolveExpressType type)
|
||||||
{
|
{
|
||||||
this.Type = type;
|
this.Type = type;
|
||||||
@ -19,6 +22,7 @@ namespace SqlSugar
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region properties
|
#region properties
|
||||||
|
public IDbMethods DbMehtods { get; set; }
|
||||||
public int Index { get; set; }
|
public int Index { get; set; }
|
||||||
public ResolveExpressType Type { get; set; }
|
public ResolveExpressType Type { get; set; }
|
||||||
public Expression Expression { get; set; }
|
public Expression Expression { get; set; }
|
||||||
|
13
SqlSugar/ExpressionsToSql/IDbMethods.cs
Normal file
13
SqlSugar/ExpressionsToSql/IDbMethods.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SqlSugar
|
||||||
|
{
|
||||||
|
public interface IDbMethods
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -99,6 +99,7 @@
|
|||||||
<Compile Include="Entities\DbTableInfo.cs" />
|
<Compile Include="Entities\DbTableInfo.cs" />
|
||||||
<Compile Include="ExpressionsToSql\Common\BinaryExpressionInfo.cs" />
|
<Compile Include="ExpressionsToSql\Common\BinaryExpressionInfo.cs" />
|
||||||
<Compile Include="ExpressionsToSql\Common\ExpressionErrorMessage.cs" />
|
<Compile Include="ExpressionsToSql\Common\ExpressionErrorMessage.cs" />
|
||||||
|
<Compile Include="ExpressionsToSql\IDbMethods.cs" />
|
||||||
<Compile Include="ExpressionsToSql\ResolveItems\MemberConstExpressionResolve.cs" />
|
<Compile Include="ExpressionsToSql\ResolveItems\MemberConstExpressionResolve.cs" />
|
||||||
<Compile Include="ExpressionsToSql\ResolveItems\MemberInitExpressionResolve.cs" />
|
<Compile Include="ExpressionsToSql\ResolveItems\MemberInitExpressionResolve.cs" />
|
||||||
<Compile Include="ExpressionsToSql\ResolveItems\MemberNewExpressionResolve.cs" />
|
<Compile Include="ExpressionsToSql\ResolveItems\MemberNewExpressionResolve.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user