Table<TEntity>.InsertAllOnSubmit<TSubEntity> Method

Definition

Adds all entities of a collection to the DataContext in a pending insert state.

public:
generic <typename TSubEntity>
 where TSubEntity : TEntity void InsertAllOnSubmit(System::Collections::Generic::IEnumerable<TSubEntity> ^ entities);
public void InsertAllOnSubmit<TSubEntity> (System.Collections.Generic.IEnumerable<TSubEntity> entities) where TSubEntity : TEntity;
member this.InsertAllOnSubmit : seq<#'Entity> -> unit
Public Sub InsertAllOnSubmit(Of TSubEntity As TEntity) (entities As IEnumerable(Of TSubEntity))

Type Parameters

TSubEntity

The type of the elements to insert.

Parameters

entities
IEnumerable<TSubEntity>

The entities to add.

Remarks

The added entities will not be in query results until after SubmitChanges has been called.

Applies to