mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-26 20:52:50 +08:00
514 lines
19 KiB
C#
514 lines
19 KiB
C#
using FreeSql.Extensions.EntityUtil;
|
||
using FreeSql.Internal.Model;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Data;
|
||
using System.Data.Common;
|
||
using System.Linq;
|
||
using System.Linq.Expressions;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace FreeSql.Internal.CommonProvider {
|
||
|
||
abstract partial class UpdateProvider<T1> : IUpdate<T1> where T1 : class {
|
||
protected IFreeSql _orm;
|
||
protected CommonUtils _commonUtils;
|
||
protected CommonExpression _commonExpression;
|
||
protected List<T1> _source = new List<T1>();
|
||
protected Dictionary<string, bool> _ignore = new Dictionary<string, bool>(StringComparer.CurrentCultureIgnoreCase);
|
||
protected TableInfo _table;
|
||
protected Func<string, string> _tableRule;
|
||
protected StringBuilder _where = new StringBuilder();
|
||
protected StringBuilder _set = new StringBuilder();
|
||
protected StringBuilder _setIncr = new StringBuilder();
|
||
protected List<DbParameter> _params = new List<DbParameter>();
|
||
protected List<DbParameter> _paramsSource = new List<DbParameter>();
|
||
protected bool _noneParameter;
|
||
protected DbTransaction _transaction;
|
||
protected DbConnection _connection;
|
||
|
||
public UpdateProvider(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression, object dywhere) {
|
||
_orm = orm;
|
||
_commonUtils = commonUtils;
|
||
_commonExpression = commonExpression;
|
||
_table = _commonUtils.GetTableByEntity(typeof(T1));
|
||
_noneParameter = _orm.CodeFirst.IsNoneCommandParameter;
|
||
this.Where(_commonUtils.WhereObject(_table, "", dywhere));
|
||
if (_orm.CodeFirst.IsAutoSyncStructure && typeof(T1) != typeof(object)) _orm.CodeFirst.SyncStructure<T1>();
|
||
}
|
||
|
||
protected void ClearData() {
|
||
_source.Clear();
|
||
_ignore.Clear();
|
||
_where.Clear();
|
||
_set.Clear();
|
||
_setIncr.Clear();
|
||
_params.Clear();
|
||
_paramsSource.Clear();
|
||
}
|
||
|
||
public IUpdate<T1> WithTransaction(DbTransaction transaction) {
|
||
_transaction = transaction;
|
||
_connection = _transaction?.Connection;
|
||
return this;
|
||
}
|
||
public IUpdate<T1> WithConnection(DbConnection connection) {
|
||
if (_transaction?.Connection != connection) _transaction = null;
|
||
_connection = connection;
|
||
return this;
|
||
}
|
||
|
||
public IUpdate<T1> NoneParameter() {
|
||
_noneParameter = true;
|
||
return this;
|
||
}
|
||
|
||
protected void ValidateVersionAndThrow(int affrows) {
|
||
if (_table.VersionColumn != null && _source.Count > 0) {
|
||
if (affrows != _source.Count)
|
||
throw new Exception($"记录可能不存在,或者【行级乐观锁】版本过旧,更新数量{_source.Count},影响的行数{affrows}。");
|
||
foreach (var d in _source)
|
||
_orm.SetEntityIncrByWithPropertyName(_table.Type, d, _table.VersionColumn.CsName, 1);
|
||
}
|
||
}
|
||
|
||
#region 参数化数据限制,或values数量限制
|
||
internal List<T1>[] SplitSource(int valuesLimit, int parameterLimit) {
|
||
valuesLimit = valuesLimit - 1;
|
||
parameterLimit = parameterLimit - 1;
|
||
if (_source == null || _source.Any() == false) return new List<T1>[0];
|
||
if (_source.Count == 1) return new[] { _source };
|
||
if (_noneParameter) {
|
||
if (_source.Count < valuesLimit) return new[] { _source };
|
||
|
||
var execCount = (int)Math.Ceiling(1.0 * _source.Count / valuesLimit);
|
||
var ret = new List<T1>[execCount];
|
||
for (var a = 0; a < execCount; a++) {
|
||
var subSource = new List<T1>();
|
||
subSource = _source.GetRange(a * valuesLimit, Math.Min(valuesLimit, _source.Count - a * valuesLimit));
|
||
ret[a] = subSource;
|
||
}
|
||
return ret;
|
||
} else {
|
||
var colSum = _table.Columns.Count - _ignore.Count;
|
||
var takeMax = parameterLimit / colSum;
|
||
var pamTotal = colSum * _source.Count;
|
||
if (pamTotal < parameterLimit) return new[] { _source };
|
||
|
||
var execCount = (int)Math.Ceiling(1.0 * pamTotal / parameterLimit);
|
||
var ret = new List<T1>[execCount];
|
||
for (var a = 0; a < execCount; a++) {
|
||
var subSource = new List<T1>();
|
||
subSource = _source.GetRange(a * takeMax, Math.Min(takeMax, _source.Count - a * takeMax));
|
||
ret[a] = subSource;
|
||
}
|
||
return ret;
|
||
}
|
||
}
|
||
internal int SplitExecuteAffrows(int valuesLimit, int parameterLimit) {
|
||
var ss = SplitSource(valuesLimit, parameterLimit);
|
||
var ret = 0;
|
||
if (ss.Length <= 1) {
|
||
ret = this.RawExecuteAffrows();
|
||
ClearData();
|
||
return ret;
|
||
}
|
||
if (_transaction != null) {
|
||
for (var a = 0; a < ss.Length; a++) {
|
||
_source = ss[a];
|
||
ret += this.RawExecuteAffrows();
|
||
}
|
||
} else {
|
||
using (var conn = _orm.Ado.MasterPool.Get()) {
|
||
_transaction = conn.Value.BeginTransaction();
|
||
try {
|
||
for (var a = 0; a < ss.Length; a++) {
|
||
_source = ss[a];
|
||
ret += this.RawExecuteAffrows();
|
||
}
|
||
_transaction.Commit();
|
||
} catch {
|
||
_transaction.Rollback();
|
||
throw;
|
||
}
|
||
_transaction = null;
|
||
}
|
||
}
|
||
ClearData();
|
||
return ret;
|
||
}
|
||
async internal Task<int> SplitExecuteAffrowsAsync(int valuesLimit, int parameterLimit) {
|
||
var ss = SplitSource(valuesLimit, parameterLimit);
|
||
var ret = 0;
|
||
if (ss.Length <= 1) {
|
||
ret = await this.RawExecuteAffrowsAsync();
|
||
ClearData();
|
||
return ret;
|
||
}
|
||
if (_transaction != null) {
|
||
for (var a = 0; a < ss.Length; a++) {
|
||
_source = ss[a];
|
||
ret += await this.RawExecuteAffrowsAsync();
|
||
}
|
||
} else {
|
||
using (var conn = await _orm.Ado.MasterPool.GetAsync()) {
|
||
_transaction = conn.Value.BeginTransaction();
|
||
try {
|
||
for (var a = 0; a < ss.Length; a++) {
|
||
_source = ss[a];
|
||
ret += await this.RawExecuteAffrowsAsync();
|
||
}
|
||
_transaction.Commit();
|
||
} catch {
|
||
_transaction.Rollback();
|
||
throw;
|
||
}
|
||
_transaction = null;
|
||
}
|
||
}
|
||
ClearData();
|
||
return ret;
|
||
}
|
||
internal List<T1> SplitExecuteUpdated(int valuesLimit, int parameterLimit) {
|
||
var ss = SplitSource(valuesLimit, parameterLimit);
|
||
var ret = new List<T1>();
|
||
if (ss.Length <= 1) {
|
||
ret = this.RawExecuteUpdated();
|
||
ClearData();
|
||
return ret;
|
||
}
|
||
if (_transaction != null) {
|
||
for (var a = 0; a < ss.Length; a++) {
|
||
_source = ss[a];
|
||
ret.AddRange(this.RawExecuteUpdated());
|
||
}
|
||
} else {
|
||
using (var conn = _orm.Ado.MasterPool.Get()) {
|
||
_transaction = conn.Value.BeginTransaction();
|
||
try {
|
||
for (var a = 0; a < ss.Length; a++) {
|
||
_source = ss[a];
|
||
ret.AddRange(this.RawExecuteUpdated());
|
||
}
|
||
_transaction.Commit();
|
||
} catch {
|
||
_transaction.Rollback();
|
||
throw;
|
||
}
|
||
_transaction = null;
|
||
}
|
||
}
|
||
ClearData();
|
||
return ret;
|
||
}
|
||
async internal Task<List<T1>> SplitExecuteUpdatedAsync(int valuesLimit, int parameterLimit) {
|
||
var ss = SplitSource(valuesLimit, parameterLimit);
|
||
var ret = new List<T1>();
|
||
if (ss.Length <= 1) {
|
||
ret = await this.RawExecuteUpdatedAsync();
|
||
ClearData();
|
||
return ret;
|
||
}
|
||
if (_transaction != null) {
|
||
for (var a = 0; a < ss.Length; a++) {
|
||
_source = ss[a];
|
||
ret.AddRange(await this.RawExecuteUpdatedAsync());
|
||
}
|
||
} else {
|
||
using (var conn = await _orm.Ado.MasterPool.GetAsync()) {
|
||
_transaction = conn.Value.BeginTransaction();
|
||
try {
|
||
for (var a = 0; a < ss.Length; a++) {
|
||
_source = ss[a];
|
||
ret.AddRange(await this.RawExecuteUpdatedAsync());
|
||
}
|
||
_transaction.Commit();
|
||
} catch {
|
||
_transaction.Rollback();
|
||
throw;
|
||
}
|
||
_transaction = null;
|
||
}
|
||
}
|
||
ClearData();
|
||
return ret;
|
||
}
|
||
#endregion
|
||
|
||
internal int RawExecuteAffrows() {
|
||
var sql = this.ToSql();
|
||
if (string.IsNullOrEmpty(sql)) return 0;
|
||
var dbParms = _params.Concat(_paramsSource).ToArray();
|
||
var affrows = _orm.Ado.ExecuteNonQuery(_connection, _transaction, CommandType.Text, sql, dbParms);
|
||
_orm.Aop.OnUpdated?.Invoke(this, new AopOnInsertedEventArgs(_table.Type, null, sql, dbParms, affrows, 0, null));
|
||
ValidateVersionAndThrow(affrows);
|
||
return affrows;
|
||
}
|
||
async internal Task<int> RawExecuteAffrowsAsync() {
|
||
var sql = this.ToSql();
|
||
if (string.IsNullOrEmpty(sql)) return 0;
|
||
var dbParms = _params.Concat(_paramsSource).ToArray();
|
||
var affrows = await _orm.Ado.ExecuteNonQueryAsync(_connection, _transaction, CommandType.Text, sql, dbParms);
|
||
_orm.Aop.OnUpdated?.Invoke(this, new AopOnInsertedEventArgs(_table.Type, null, sql, dbParms, affrows, 0, null));
|
||
ValidateVersionAndThrow(affrows);
|
||
return affrows;
|
||
}
|
||
internal abstract List<T1> RawExecuteUpdated();
|
||
internal abstract Task<List<T1>> RawExecuteUpdatedAsync();
|
||
|
||
public abstract int ExecuteAffrows();
|
||
public abstract Task<int> ExecuteAffrowsAsync();
|
||
public abstract List<T1> ExecuteUpdated();
|
||
public abstract Task<List<T1>> ExecuteUpdatedAsync();
|
||
|
||
public IUpdate<T1> IgnoreColumns(Expression<Func<T1, object>> columns) {
|
||
var cols = _commonExpression.ExpressionSelectColumns_MemberAccess_New_NewArrayInit(null, columns?.Body, false, null).Distinct();
|
||
_ignore.Clear();
|
||
foreach (var col in cols) _ignore.Add(col, true);
|
||
return this;
|
||
}
|
||
public IUpdate<T1> UpdateColumns(Expression<Func<T1, object>> columns) {
|
||
var cols = _commonExpression.ExpressionSelectColumns_MemberAccess_New_NewArrayInit(null, columns?.Body, false, null).ToDictionary(a => a, a => true);
|
||
_ignore.Clear();
|
||
foreach (var col in _table.Columns.Values)
|
||
if (cols.ContainsKey(col.Attribute.Name) == false)
|
||
_ignore.Add(col.Attribute.Name, true);
|
||
return this;
|
||
}
|
||
|
||
public IUpdate<T1> IgnoreColumns(string[] columns) {
|
||
_ignore.Clear();
|
||
foreach (var col in columns) _ignore.Add(col, true);
|
||
return this;
|
||
}
|
||
public IUpdate<T1> UpdateColumns(string[] columns) {
|
||
var cols = columns.ToDictionary(a => a);
|
||
_ignore.Clear();
|
||
foreach (var col in _table.Columns.Values)
|
||
if (cols.ContainsKey(col.Attribute.Name) == false)
|
||
_ignore.Add(col.Attribute.Name, true);
|
||
return this;
|
||
}
|
||
|
||
public IUpdate<T1> SetSource(T1 source) => this.SetSource(new[] { source });
|
||
public IUpdate<T1> SetSource(IEnumerable<T1> source) {
|
||
if (source == null || source.Any() == false) return this;
|
||
_source.AddRange(source.Where(a => a != null));
|
||
return this;
|
||
}
|
||
|
||
public IUpdate<T1> Set<TMember>(Expression<Func<T1, TMember>> column, TMember value) {
|
||
var cols = new List<SelectColumnInfo>();
|
||
_commonExpression.ExpressionSelectColumn_MemberAccess(null, cols, SelectTableInfoType.From, column?.Body, true, null);
|
||
if (cols.Count != 1) return this;
|
||
var col = cols.First();
|
||
object paramVal = null;
|
||
if (col.Column.Attribute.MapType == typeof(TMember)) paramVal = value;
|
||
else paramVal = Utils.GetDataReaderValue(col.Column.Attribute.MapType, value);
|
||
_set.Append(", ").Append(_commonUtils.QuoteSqlName(col.Column.Attribute.Name)).Append(" = ");
|
||
if (_noneParameter) {
|
||
_set.Append(_commonUtils.GetNoneParamaterSqlValue(_params, col.Column.Attribute.MapType, paramVal));
|
||
} else {
|
||
_set.Append(_commonUtils.QuoteWriteParamter(col.Column.Attribute.MapType, $"{_commonUtils.QuoteParamterName("p_")}{_params.Count}"));
|
||
_commonUtils.AppendParamter(_params, null, col.Column.Attribute.MapType, paramVal);
|
||
}
|
||
//foreach (var t in _source) Utils.FillPropertyValue(t, tryf.CsName, value);
|
||
return this;
|
||
}
|
||
public IUpdate<T1> Set<TMember>(Expression<Func<T1, TMember>> binaryExpression) {
|
||
if (binaryExpression?.Body is BinaryExpression == false &&
|
||
binaryExpression?.Body.NodeType != ExpressionType.Call) return this;
|
||
var cols = new List<SelectColumnInfo>();
|
||
var expt = _commonExpression.ExpressionWhereLambdaNoneForeignObject(null, _table, cols, binaryExpression, null);
|
||
if (cols.Any() == false) return this;
|
||
foreach (var col in cols) {
|
||
if (col.Column.Attribute.IsNullable == true && col.Column.Attribute.MapType.IsNullableType()) {
|
||
var replval = _orm.CodeFirst.GetDbInfo(col.Column.Attribute.MapType.GenericTypeArguments.FirstOrDefault())?.defaultValue;
|
||
if (replval == null) continue;
|
||
var replname = _commonUtils.QuoteSqlName(col.Column.Attribute.Name);
|
||
expt = expt.Replace(replname, _commonUtils.IsNull(replname, _commonUtils.FormatSql("{0}", replval)));
|
||
}
|
||
}
|
||
_setIncr.Append(", ").Append(_commonUtils.QuoteSqlName(cols.First().Column.Attribute.Name)).Append(" = ").Append(expt);
|
||
return this;
|
||
}
|
||
public IUpdate<T1> SetRaw(string sql, object parms = null) {
|
||
if (string.IsNullOrEmpty(sql)) return this;
|
||
_set.Append(", ").Append(sql);
|
||
if (parms != null) _params.AddRange(_commonUtils.GetDbParamtersByObject(sql, parms));
|
||
return this;
|
||
}
|
||
|
||
public IUpdate<T1> Where(Expression<Func<T1, bool>> expression) => this.Where(_commonExpression.ExpressionWhereLambdaNoneForeignObject(null, _table, null, expression?.Body, null));
|
||
public IUpdate<T1> Where(string sql, object parms = null) {
|
||
if (string.IsNullOrEmpty(sql)) return this;
|
||
var args = new AopWhereEventArgs(sql, parms);
|
||
_orm.Aop.Where?.Invoke(this, new AopWhereEventArgs(sql, parms));
|
||
if (args.IsCancel == true) return this;
|
||
|
||
_where.Append(" AND (").Append(sql).Append(")");
|
||
if (parms != null) _params.AddRange(_commonUtils.GetDbParamtersByObject(sql, parms));
|
||
return this;
|
||
}
|
||
public IUpdate<T1> Where(T1 item) => this.Where(new[] { item });
|
||
public IUpdate<T1> Where(IEnumerable<T1> items) => this.Where(_commonUtils.WhereItems(_table, "", items));
|
||
public IUpdate<T1> WhereExists<TEntity2>(ISelect<TEntity2> select, bool notExists = false) where TEntity2 : class => this.Where($"{(notExists ? "NOT " : "")}EXISTS({select.ToSql("1")})");
|
||
public IUpdate<T1> WhereDynamic(object dywhere) => this.Where(_commonUtils.WhereObject(_table, "", dywhere));
|
||
|
||
protected string WhereCaseSource(string CsName, Func<string, string> thenValue) {
|
||
if (_source.Any() == false) return null;
|
||
if (_table.ColumnsByCs.ContainsKey(CsName) == false) throw new Exception($"找不到 {CsName} 对应的列");
|
||
if (thenValue == null) throw new ArgumentNullException("thenValue 参数不可为 null");
|
||
|
||
if (_source.Count == 0) return null;
|
||
if (_source.Count == 1) {
|
||
|
||
var col = _table.ColumnsByCs[CsName];
|
||
var sb = new StringBuilder();
|
||
|
||
sb.Append(_commonUtils.QuoteSqlName(col.Attribute.Name)).Append(" = ");
|
||
sb.Append(thenValue(_commonUtils.GetNoneParamaterSqlValue(_paramsSource, col.Attribute.MapType, col.GetMapValue(_source.First()))));
|
||
|
||
return sb.ToString();
|
||
|
||
} else {
|
||
var caseWhen = new StringBuilder();
|
||
caseWhen.Append("CASE ");
|
||
ToSqlCase(caseWhen, _table.Primarys);
|
||
var cw = caseWhen.ToString();
|
||
|
||
var col = _table.ColumnsByCs[CsName];
|
||
var sb = new StringBuilder();
|
||
sb.Append(_commonUtils.QuoteSqlName(col.Attribute.Name)).Append(" = ");
|
||
|
||
var isnull = false;
|
||
var cwsb = new StringBuilder().Append(cw);
|
||
foreach (var d in _source) {
|
||
cwsb.Append(" \r\nWHEN ");
|
||
ToSqlWhen(cwsb, _table.Primarys, d);
|
||
cwsb.Append(" THEN ");
|
||
var value = col.GetMapValue(d);
|
||
cwsb.Append(thenValue(_commonUtils.GetNoneParamaterSqlValue(_paramsSource, col.Attribute.MapType, value)));
|
||
if (isnull == false) isnull = value == null || value == DBNull.Value;
|
||
}
|
||
cwsb.Append(" END");
|
||
if (isnull == false) sb.Append(cwsb.ToString());
|
||
else sb.Append("NULL");
|
||
cwsb.Clear();
|
||
|
||
return sb.ToString();
|
||
}
|
||
}
|
||
|
||
protected abstract void ToSqlCase(StringBuilder caseWhen, ColumnInfo[] primarys);
|
||
protected abstract void ToSqlWhen(StringBuilder sb, ColumnInfo[] primarys, object d);
|
||
|
||
public IUpdate<T1> AsTable(Func<string, string> tableRule) {
|
||
_tableRule = tableRule;
|
||
return this;
|
||
}
|
||
public IUpdate<T1> AsType(Type entityType) {
|
||
if (entityType == typeof(object)) throw new Exception("IUpdate.AsType 参数不支持指定为 object");
|
||
if (entityType == _table.Type) return this;
|
||
var newtb = _commonUtils.GetTableByEntity(entityType);
|
||
_table = newtb ?? throw new Exception("IUpdate.AsType 参数错误,请传入正确的实体类型");
|
||
if (_orm.CodeFirst.IsAutoSyncStructure) _orm.CodeFirst.SyncStructure(entityType);
|
||
return this;
|
||
}
|
||
|
||
public string ToSql() {
|
||
if (_where.Length == 0 && _source.Any() == false) return null;
|
||
|
||
var sb = new StringBuilder();
|
||
sb.Append("UPDATE ").Append(_commonUtils.QuoteSqlName(_tableRule?.Invoke(_table.DbName) ?? _table.DbName)).Append(" SET ");
|
||
|
||
if (_set.Length > 0) { //指定 set 更新
|
||
sb.Append(_set.ToString().Substring(2));
|
||
|
||
} else if (_source.Count == 1) { //保存 Source
|
||
_paramsSource.Clear();
|
||
var colidx = 0;
|
||
foreach (var col in _table.Columns.Values) {
|
||
if (col.Attribute.IsIdentity == false && col.Attribute.IsVersion == false && _ignore.ContainsKey(col.CsName) == false) {
|
||
if (colidx > 0) sb.Append(", ");
|
||
sb.Append(_commonUtils.QuoteSqlName(col.Attribute.Name)).Append(" = ");
|
||
var value = col.GetMapValue(_source.First());
|
||
if (_noneParameter) {
|
||
sb.Append(_commonUtils.GetNoneParamaterSqlValue(_paramsSource, col.Attribute.MapType, value));
|
||
} else {
|
||
sb.Append(_commonUtils.QuoteWriteParamter(col.Attribute.MapType, _commonUtils.QuoteParamterName($"p_{_paramsSource.Count}")));
|
||
_commonUtils.AppendParamter(_paramsSource, null, col.Attribute.MapType, value);
|
||
}
|
||
++colidx;
|
||
}
|
||
}
|
||
if (colidx == 0) return null;
|
||
|
||
} else if (_source.Count > 1) { //批量保存 Source
|
||
if (_table.Primarys.Any() == false) return null;
|
||
|
||
var caseWhen = new StringBuilder();
|
||
caseWhen.Append("CASE ");
|
||
ToSqlCase(caseWhen, _table.Primarys);
|
||
var cw = caseWhen.ToString();
|
||
|
||
_paramsSource.Clear();
|
||
var colidx = 0;
|
||
foreach (var col in _table.Columns.Values) {
|
||
if (col.Attribute.IsIdentity == false && col.Attribute.IsVersion == false && _ignore.ContainsKey(col.CsName) == false) {
|
||
if (colidx > 0) sb.Append(", ");
|
||
sb.Append(_commonUtils.QuoteSqlName(col.Attribute.Name)).Append(" = ");
|
||
|
||
var isnull = false;
|
||
var cwsb = new StringBuilder().Append(cw);
|
||
foreach (var d in _source) {
|
||
cwsb.Append(" \r\nWHEN ");
|
||
ToSqlWhen(cwsb, _table.Primarys, d);
|
||
cwsb.Append(" THEN ");
|
||
var value = col.GetMapValue(d);
|
||
if (_noneParameter) {
|
||
cwsb.Append(_commonUtils.GetNoneParamaterSqlValue(_paramsSource, col.Attribute.MapType, value));
|
||
} else {
|
||
cwsb.Append(_commonUtils.QuoteWriteParamter(col.Attribute.MapType, _commonUtils.QuoteParamterName($"p_{_paramsSource.Count}")));
|
||
_commonUtils.AppendParamter(_paramsSource, null, col.Attribute.MapType, value);
|
||
}
|
||
if (isnull == false) isnull = value == null || value == DBNull.Value;
|
||
}
|
||
cwsb.Append(" END");
|
||
if (isnull == false) sb.Append(cwsb.ToString());
|
||
else sb.Append("NULL");
|
||
cwsb.Clear();
|
||
|
||
++colidx;
|
||
}
|
||
}
|
||
if (colidx == 0) return null;
|
||
} else if (_setIncr.Length == 0)
|
||
return null;
|
||
|
||
if (_setIncr.Length > 0)
|
||
sb.Append(_set.Length > 0 ? _setIncr.ToString() : _setIncr.ToString().Substring(2));
|
||
|
||
if (_table.VersionColumn != null) {
|
||
var vcname = _commonUtils.QuoteSqlName(_table.VersionColumn.Attribute.Name);
|
||
sb.Append(", ").Append(vcname).Append(" = ").Append(vcname).Append(" + 1");
|
||
}
|
||
|
||
sb.Append(" \r\nWHERE ");
|
||
if (_source.Any())
|
||
sb.Append("(").Append(_commonUtils.WhereItems(_table, "", _source)).Append(")");
|
||
|
||
if (_where.Length > 0)
|
||
sb.Append(_source.Any() ? _where.ToString() : _where.ToString().Substring(5));
|
||
|
||
if (_table.VersionColumn != null) {
|
||
var versionCondi = WhereCaseSource(_table.VersionColumn.CsName, sqlval => sqlval);
|
||
if (string.IsNullOrEmpty(versionCondi) == false)
|
||
sb.Append(" AND ").Append(versionCondi);
|
||
}
|
||
|
||
return sb.ToString();
|
||
}
|
||
}
|
||
} |