mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
-
This commit is contained in:
parent
e0e1f1a554
commit
0b99bbcc24
@ -23,6 +23,7 @@ namespace SqlSugar
|
||||
public ResolveExpressType Type { get; set; }
|
||||
public Expression Expression { get; set; }
|
||||
public StringBuilder ResultString { get; set; }
|
||||
public object ResultObj { get; set; }
|
||||
public bool IsWhereSingle
|
||||
{
|
||||
get
|
||||
@ -63,6 +64,14 @@ namespace SqlSugar
|
||||
if (this.ResultString == null) return string.Empty;
|
||||
return this.ResultString.ToString();
|
||||
}
|
||||
|
||||
public virtual object GetResultObj()
|
||||
{
|
||||
BaseResolve resolve = new BaseResolve(new ExpressionParameter() { Expression = this.Expression, Context = this });
|
||||
resolve.Start();
|
||||
return this.ResultObj;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user