mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-19 10:08:19 +08:00
-
This commit is contained in:
@@ -71,10 +71,12 @@ namespace SqlSugar
|
|||||||
public string[] GetResultArray()
|
public string[] GetResultArray()
|
||||||
{
|
{
|
||||||
if (this._Result == null) return null;
|
if (this._Result == null) return null;
|
||||||
|
var reslut = new List<string>();
|
||||||
if (IsUpper)
|
if (IsUpper)
|
||||||
return this.Result.ToString().ToUpper().TrimEnd(',').Split(',');
|
reslut= this.Result.ToString().ToUpper().TrimEnd(',').Split(',').ToList();
|
||||||
else
|
else
|
||||||
return this.Result.ToString().TrimEnd(',').Split(',');
|
reslut= this.Result.ToString().TrimEnd(',').Split(',').ToList();
|
||||||
|
return reslut.ToArray();
|
||||||
}
|
}
|
||||||
|
|
||||||
public string GetResultString()
|
public string GetResultString()
|
||||||
|
Reference in New Issue
Block a user