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 9bbefe7 commit 1d8c0e8Copy full SHA for 1d8c0e8
Providers/FreeSql.Provider.Sqlite/SqliteExtensions.cs
@@ -20,7 +20,7 @@ public static partial class FreeSqlSqliteGlobalExtensions
20
public static void ExecuteSqliteBulkInsert<T>(this IInsert<T> that) where T : class
21
{
22
var insert = that as FreeSql.Sqlite.Curd.SqliteInsert<T>;
23
- if (insert == null) throw new Exception(CoreErrorStrings.S_Features_Unique("BulkInsert", "Sqlite"));
+ if (insert == null) throw new Exception(CoreErrorStrings.S_Features_Unique("ExecuteSqliteBulkInsert", "Sqlite"));
24
25
var dt = that.ToDataTable();
26
if (dt.Rows.Count == 0) return;
0 commit comments