Skip to content

Commit 1d8c0e8

Browse files
committed
update
1 parent 9bbefe7 commit 1d8c0e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Providers/FreeSql.Provider.Sqlite/SqliteExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static partial class FreeSqlSqliteGlobalExtensions
2020
public static void ExecuteSqliteBulkInsert<T>(this IInsert<T> that) where T : class
2121
{
2222
var insert = that as FreeSql.Sqlite.Curd.SqliteInsert<T>;
23-
if (insert == null) throw new Exception(CoreErrorStrings.S_Features_Unique("BulkInsert", "Sqlite"));
23+
if (insert == null) throw new Exception(CoreErrorStrings.S_Features_Unique("ExecuteSqliteBulkInsert", "Sqlite"));
2424

2525
var dt = that.ToDataTable();
2626
if (dt.Rows.Count == 0) return;

0 commit comments

Comments
 (0)