We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 523a7ff commit b1c2702Copy full SHA for b1c2702
Providers/FreeSql.Provider.QuestDb/QuestDbGlobalExtensions.cs
@@ -197,7 +197,7 @@ public static async Task<int> ExecuteBulkCopyAsync<T>(this IInsert<T> that) wher
197
using (var writer = new StreamWriter(filePath))
198
using (var csv = new CsvWriter(writer, CultureInfo.CurrentCulture))
199
{
200
- csv.WriteRecords(insert._source);
+ await csv.WriteRecordsAsync(insert._source);
201
}
202
203
var httpContent = new MultipartFormDataContent(boundary);
0 commit comments