Inserts the batch of records using bulk insert.
Namespace:
Tortuga.Chain.DataSources
Assembly:
Tortuga.Chain.Core (in Tortuga.Chain.Core.dll)
ILink<int> InsertBulk<TObject>(
string tableName,
IEnumerable<TObject> objects
)
Function InsertBulk(Of TObject) ( _
tableName As String, _
objects As IEnumerable(Of TObject) _
) As ILink(Of Integer)
generic<typename TObject>
ILink<int^>^ InsertBulk(
String^ tableName,
IEnumerable<TObject>^ objects
)
Type Parameters
- TObject
Parameters
- tableName
- Type: String
Name of the table.
- objects
- Type: IEnumerable<(Of <(<'TObject>)>)>
The objects.
Return Value
MySqlInsertBulk.