We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d5efa45 + 2a2d61d commit 2588ccbCopy full SHA for 2588ccb
1 file changed
Providers/FreeSql.Provider.ClickHouse/Curd/ClickHouseInsert.cs
@@ -188,7 +188,7 @@ async protected override Task<int> RawExecuteAffrowsAsync(CancellationToken canc
188
var columns = new string[_table.ColumnsByPosition.Length];
189
for (var i = 0; i < columns.Length; i++)
190
{
191
- columns[i] = _table.ColumnsByPosition[i].CsName;
+ columns[i] = _table.ColumnsByPosition[i].Attribute.Name;
192
}
193
using (var conn = await _orm.Ado.MasterPool.GetAsync())
194
0 commit comments