Click or drag to resize
IUpdateableBatchTUpdate Method

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

Updates 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
void Update(
	IEnumerable<T> dtos
)

Parameters

dtos
Type: System.Collections.GenericIEnumerableT
The entities to update
Exceptions
ExceptionCondition
ArgumentExceptionThrown if any id is zero or lower.
NonUniqueValueExceptionThrown if any value that must be unique, is not
ValueIsRequiredExceptionThrown if any required value is missing
ObjectNotFoundExceptionThrown if any id was not found.
ArgumentNullExceptionThrown if dtos is null
ValueCanNotBeChangedExceptionThrown if a property can not be changed on update
See Also