using FreeSql.Internal; using System; using System.Collections.Generic; using System.Data.Common; using System.Linq; using System.Linq.Expressions; namespace FreeSql.Sqlite.Curd { class SqliteInsertOrUpdate : Internal.CommonProvider.InsertOrUpdateProvider where T1 : class { public SqliteInsertOrUpdate(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression) : base(orm, commonUtils, commonExpression) { } public override IInsertOrUpdate SetSource(string sql, Expression> tempPrimarys = null) { var list = _orm.Ado.CommandFluent(sql) .WithConnection(_connection) .WithTransaction(_transaction) .Query(); return SetSource(list, tempPrimarys); } public override string ToSql() { if (_source?.Any() != true) return null; var sqls = new string[2]; var dbParams = new List(); var ds = SplitSourceByIdentityValueIsNull(_source); if (ds.Item1.Any()) sqls[0] = string.Join("\r\n\r\n;\r\n\r\n", ds.Item1.Select(a => getInsertSql(a, false))); if (ds.Item2.Any()) sqls[1] = string.Join("\r\n\r\n;\r\n\r\n", ds.Item2.Select(a => getInsertSql(a, true))); _params = dbParams.ToArray(); if (ds.Item2.Any() == false) return sqls[0]; if (ds.Item1.Any() == false) return sqls[1]; return string.Join("\r\n\r\n;\r\n\r\n", sqls); string getInsertSql(List data, bool flagInsert) { var insert = _orm.Insert() .AsTable(_tableRule).AsType(_table.Type) .WithConnection(_connection) .WithTransaction(_transaction) .NoneParameter(true) as Internal.CommonProvider.InsertProvider; insert._noneParameterFlag = flagInsert ? "c" : "cu"; insert._source = data; insert._table = _table; string sql = ""; if (IdentityColumn != null && flagInsert) sql = insert.ToSql(); else { insert.InsertIdentity(); if (_doNothing == false) { if (_updateIgnore.Any()) throw new Exception(CoreStrings.S_InsertOrUpdate_Unable_UpdateColumns); sql = insert.ToSql(); if (sql?.StartsWith("INSERT INTO ") == true) sql = $"INSERT OR REPLACE INTO {sql.Substring(12)}"; } else { if (_tempPrimarys.Any() == false) throw new Exception(CoreStrings.Entity_Must_Primary_Key("fsql.InsertOrUpdate + IfExistsDoNothing + Sqlite ", _table.CsName)); sql = insert.ToSql(); if (sql?.StartsWith("INSERT INTO ") == true) sql = $"INSERT OR IGNORE INTO {sql.Substring(12)}"; //sql = insert.ToSqlValuesOrSelectUnionAllExtension101(false, (rowd, idx, sb) => { // sb.Append(" \r\n WHERE NOT EXISTS("); // if (typeof(T1) == typeof(Dictionary) && rowd is T1 dict) // sb.Append($"SELECT 1 FROM {_commonUtils.QuoteSqlName(_tableRule(null))} WHERE {_commonUtils.WhereItems(_tempPrimarys, "", new T1[] { dict })})"); // else // sb.Append( // _orm.Select() // .AsTable((_, __) => _tableRule?.Invoke(__)).AsType(_table.Type) // .DisableGlobalFilter() // .WhereDynamic(rowd) // .Limit(1).ToSql("1").Replace(" \r\n", " \r\n ")).Append(")"); //}); } } if (string.IsNullOrEmpty(sql)) return null; if (insert._params?.Any() == true) dbParams.AddRange(insert._params); return sql; } } } }