Click or drag to resize
ICreateableBatchTCreate Method

[This is preliminary documentation and is subject to change.]

Creates multiple entities in one operation

Namespace: Netadmin.Management.Common.Core
Assembly: Netadmin.Management.Interfaces (in Netadmin.Management.Interfaces.dll) Version: release/9.0@131b654fe7332b0776120c2b44d96c6cac5ac9a2
Syntax
IEnumerable<T> Create(
	IEnumerable<T> dtos
)

Parameters

dtos
Type: System.Collections.GenericIEnumerableT
An IEnumerable with the entities to create

Return Value

Type: IEnumerableT
An IEnumerable with all created entities updated with the id updated
Exceptions
ExceptionCondition
NonUniqueValueExceptionThrown if any value that must be unique, is not
ValueIsRequiredExceptionThrown if a required value is missing
ArgumentNullExceptionThrown if dtos is null
See Also