SQLiteConnectionInsertAll Method (IEnumerable, String) |
Inserts all specified objects.
Namespace:
Unvired.Kernel.SQLite
Assembly:
Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic int InsertAll(
IEnumerable objects,
string extra
)
Public Function InsertAll (
objects As IEnumerable,
extra As String
) As Integer
public:
int InsertAll(
IEnumerable^ objects,
String^ extra
)
member InsertAll :
objects : IEnumerable *
extra : string -> int
Parameters
- objects
- Type: System.CollectionsIEnumerable
An [!:IEnumerable] of the objects to insert.
- extra
- Type: SystemString
Literal SQL code that gets placed into the command. INSERT {extra} INTO ...
Return Value
Type:
Int32
The number of rows added to the table.
See Also