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
Copy file name to clipboardExpand all lines: EntityFramework.Utilities/EntityFramework.Utilities/EFBatchOperation.cs
+94-5Lines changed: 94 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,35 @@ public interface IEFBatchOperationBase<TContext, T> where T : class
21
21
/// <param name="items">The items to insert</param>
22
22
/// <param name="connection">The DbConnection to use for the insert. Only needed when for example a profiler wraps the connection. Then you need to provide a connection of the type the provider use.</param>
23
23
/// <param name="batchSize">The size of each batch. Default depends on the provider. SqlProvider uses 15000 as default</param>
/// Bulk update all items if the Provider supports it. Otherwise it will use the default update unless Configuration.DisableDefaultFallback is set to true in which case it would throw an exception.
30
+
/// </summary>
31
+
/// <typeparam name="TEntity"></typeparam>
32
+
/// <param name="items">The items to update</param>
33
+
/// <param name="updateSpecification">Define which columns to update</param>
34
+
/// <param name="connection">The DbConnection to use for the insert. Only needed when for example a profiler wraps the connection. Then you need to provide a connection of the type the provider use.</param>
35
+
/// <param name="batchSize">The size of each batch. Default depends on the provider. SqlProvider uses 15000 as default</param>
/// <param name="items">The items to insert</param>
69
96
/// <param name="connection">The DbConnection to use for the insert. Only needed when for example a profiler wraps the connection. Then you need to provide a connection of the type the provider use.</param>
70
97
/// <param name="batchSize">The size of each batch. Default depends on the provider. SqlProvider uses 15000 as default</param>
0 commit comments