public KeyValuePair <string, List <DbLiteParameter> > ToSql() { PreToSql(); string sql = UpdateBuilder.ToSqlString(); RestoreMapping(); return(new KeyValuePair <string, List <DbLiteParameter> >(sql, UpdateBuilder.Parameters)); }
private string _ExecuteCommand() { PreToSql(); AutoRemoveDataCache(); Check.Exception(UpdateBuilder.WhereValues.IsNullOrEmpty() && GetPrimaryKeys().IsNullOrEmpty(), "You cannot have no primary key and no conditions"); string sql = UpdateBuilder.ToSqlString(); ValidateVersion(); RestoreMapping(); Before(sql); return(sql); }