Class SqlBulkCopySettings
Inheritance
System.Object
SqlBulkCopySettings
Namespace: JK.Common.Data.Sql
Assembly: JK.Common.Data.Sql.dll
Syntax
public class SqlBulkCopySettings : object
Constructors
| Improve this Doc View SourceSqlBulkCopySettings()
Declaration
public SqlBulkCopySettings()
Properties
| Improve this Doc View SourceBatchSize
Declaration
public int BatchSize { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Columns
List of columns to be used within the SqlBulkCopy where key is the object's property name and value is the table's column name.
Declaration
public IDictionary<string, string> Columns { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<System.String, System.String> |
TableName
Declaration
public string TableName { get; set; }
Property Value
Type | Description |
---|---|
System.String |