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