mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update dm db.Updateable
This commit is contained in:
parent
28a30ab11e
commit
d2c3907b5f
@ -27,7 +27,12 @@ namespace SqlSugar
|
||||
i++;
|
||||
return string.Format("{0} {1} WHERE {2};", updateTable, setValues, string.Join("AND", whereList));
|
||||
}).ToArray()));
|
||||
return sb.ToString();
|
||||
var result= sb.ToString();
|
||||
if (result == "\r\n")
|
||||
{
|
||||
return null;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
private string GetOracleUpdateColums(int i, DbColumnInfo m)
|
||||
|
Loading…
Reference in New Issue
Block a user