mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 13:06:50 +08:00
Update access
This commit is contained in:
parent
0940dfcf75
commit
87d41bab3b
@ -26,13 +26,13 @@ namespace SqlSugar.Access
|
||||
whereList.Add(whereString);
|
||||
}
|
||||
i++;
|
||||
return string.Format("{0} {1} WHERE {2}", updateTable, setValues, string.Join(" AND", whereList)) + UtilConstants.ReplaceCommaKey;
|
||||
return string.Format("{0} {1} WHERE {2}", updateTable, setValues, string.Join(" AND ", whereList)) + UtilConstants.ReplaceCommaKey;
|
||||
}).ToArray()));
|
||||
return sb.ToString();
|
||||
}
|
||||
private string GetOracleUpdateColums(int i, DbColumnInfo m, bool iswhere)
|
||||
{
|
||||
return string.Format("{0}={1}", m.DbColumnName , FormatValue(m.Value));
|
||||
return string.Format(" {0}={1} ", m.DbColumnName , FormatValue(m.Value));
|
||||
}
|
||||
|
||||
public override object FormatValue(object value)
|
||||
|
Loading…
Reference in New Issue
Block a user