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 3aaf576 commit 994f4dbCopy full SHA for 994f4db
src/Serilog.Sinks.SqlServer/ListDataReader.cs
@@ -9,6 +9,8 @@ namespace Serilog.Sinks.SqlServer;
9
/// <remarks>
10
/// This class enables bulk insert operations by wrapping an enumerable collection and exposing it through the IDataReader interface.
11
/// Column mappings are defined through the <see cref="MappingContext{T}"/> which specifies how to extract values from each item.
12
+/// The <see cref="MappingContext{T}"/> instance should be created once and reused across multiple <see cref="ListDataReader{T}"/> instances
13
+/// to avoid the overhead of recreating column mappings and schema information for each operation.
14
/// </remarks>
15
public class ListDataReader<T> : IDataReader
16
{
0 commit comments