Table<TEntity>.InsertAllOnSubmit<TSubEntity> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.