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