You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Provides extension methods to NPoco Database class.
14
+
/// Provides extension methods to NPoco Database class.
13
15
/// </summary>
14
16
publicstaticpartialclassNPocoDatabaseExtensions
15
17
{
16
18
/// <summary>
17
-
/// Configures NPoco's SqlBulkCopyHelper to use the correct SqlConnection and SqlTransaction instances from the underlying RetryDbConnection and ProfiledDbTransaction
19
+
/// Configures NPoco's SqlBulkCopyHelper to use the correct SqlConnection and SqlTransaction instances from the
20
+
/// underlying RetryDbConnection and ProfiledDbTransaction
18
21
/// </summary>
19
22
/// <remarks>
20
-
/// This is required to use NPoco's own <see cref="Database.InsertBulk{T}(IEnumerable{T})" /> method because we use wrapped DbConnection and DbTransaction instances.
21
-
/// NPoco's InsertBulk method only caters for efficient bulk inserting records for Sql Server, it does not cater for bulk inserting of records for
22
-
/// any other database type and in which case will just insert records one at a time.
23
-
/// NPoco's InsertBulk method also deals with updating the passed in entity's PK/ID once it's inserted whereas our own BulkInsertRecords methods
24
-
/// do not handle this scenario.
23
+
/// This is required to use NPoco's own <see cref="Database.InsertBulk{T}(IEnumerable{T})" /> method because we use
24
+
/// wrapped DbConnection and DbTransaction instances.
25
+
/// NPoco's InsertBulk method only caters for efficient bulk inserting records for Sql Server, it does not cater for
26
+
/// bulk inserting of records for
27
+
/// any other database type and in which case will just insert records one at a time.
28
+
/// NPoco's InsertBulk method also deals with updating the passed in entity's PK/ID once it's inserted whereas our own
0 commit comments