Update sqlite

This commit is contained in:
sunkaixuan
2022-04-15 10:04:47 +08:00
parent a8a6ff37a2
commit fbab3c87ce

View File

@@ -25,7 +25,7 @@ namespace SqlSugar
whereList.Add(whereString);
}
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()));
return sb.ToString();
}