mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-25 01:14:33 +08:00
-
This commit is contained in:
parent
b181fbd85a
commit
46f219d155
Binary file not shown.
@ -8,6 +8,6 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
public class ExpResolveAccessory
|
public class ExpResolveAccessory
|
||||||
{
|
{
|
||||||
protected List<DbParameter> _Parameters { get; set; }
|
protected List<SugarParameter> _Parameters { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,18 +21,18 @@ namespace SqlSugar
|
|||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
BaseResolve resolve = new BaseResolve(new ExpressionParameter() { Expression=this.Expression, Context=this });
|
BaseResolve resolve = new BaseResolve(new ExpressionParameter() { Expression = this.Expression, Context = this });
|
||||||
resolve.Start();
|
resolve.Start();
|
||||||
return resolve.SqlWhere;
|
return resolve.SqlWhere;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string GetSelect() { return ""; }
|
public string GetSelect() { return ""; }
|
||||||
|
|
||||||
public List<DbParameter> Parameters
|
public List<SugarParameter> Parameters
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return PubMethod.IsNullReturnNew(base._Parameters);
|
return base._Parameters;
|
||||||
}
|
}
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
|
@ -97,7 +97,7 @@
|
|||||||
<Compile Include="Entities\ConnectionConfig.cs" />
|
<Compile Include="Entities\ConnectionConfig.cs" />
|
||||||
<Compile Include="Entities\DbColumnInfo.cs" />
|
<Compile Include="Entities\DbColumnInfo.cs" />
|
||||||
<Compile Include="Entities\DbTableInfo.cs" />
|
<Compile Include="Entities\DbTableInfo.cs" />
|
||||||
<Compile Include="Entities\SugarParameter.cs" />
|
<Compile Include="ExpressionsToSql\SugarParameter.cs" />
|
||||||
<Compile Include="ExpressionsToSql\ExpressionParameter.cs" />
|
<Compile Include="ExpressionsToSql\ExpressionParameter.cs" />
|
||||||
<Compile Include="Entities\JoinQueryInfo.cs" />
|
<Compile Include="Entities\JoinQueryInfo.cs" />
|
||||||
<Compile Include="Entities\Mapping\MappingColumn.cs" />
|
<Compile Include="Entities\Mapping\MappingColumn.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user