@@ -169,9 +169,9 @@ public interface IDriver
169
169
/// Create a <see cref="DbBatch"/>
170
170
/// </summary>
171
171
/// <returns></returns>
172
- /// <exception cref="NotImplementedException "></exception>
173
- DbBatch CreateBatch ( ) => throw new NotImplementedException ( ) ;
174
-
172
+ /// <exception cref="NotSupportedException "></exception>
173
+ DbBatch CreateBatch ( ) => throw new NotSupportedException ( ) ;
174
+
175
175
/// <summary>
176
176
/// Can this driver create <see cref="DbBatch"/>es?
177
177
/// </summary>
@@ -182,7 +182,7 @@ public interface IDriver
182
182
/// May be a no-op if the driver does not support preparing commands, or for any other reason.
183
183
/// </summary>
184
184
/// <param name="dbBatch">The batch.</param>
185
- void PrepareBatch ( DbBatch dbBatch ) => throw new NotImplementedException ( ) ;
185
+ void PrepareBatch ( DbBatch dbBatch ) { }
186
186
187
187
/// <summary>
188
188
/// Creates (clones) a <see cref="DbBatchCommand"/> from a <see cref="DbCommand"/>,
@@ -193,8 +193,8 @@ public interface IDriver
193
193
/// <param name="dbBatch"></param>
194
194
/// <param name="dbCommand"></param>
195
195
/// <returns></returns>
196
- /// <exception cref="NotImplementedException "></exception>
197
- DbBatchCommand CreateDbBatchCommandFromDbCommand ( DbBatch dbBatch , DbCommand dbCommand ) => throw new NotImplementedException ( ) ;
196
+ /// <exception cref="NotSupportedException "></exception>
197
+ DbBatchCommand CreateDbBatchCommandFromDbCommand ( DbBatch dbBatch , DbCommand dbCommand ) => throw new NotSupportedException ( ) ;
198
198
#endif
199
199
}
200
200
}
0 commit comments