IEntityCollectionUpdateMulti Method (IEntity, IPredicate, IRelationCollection) | 
 Updates in the persistent storage all entities of the type this collection is for which have data in common with the specified 
            entity. Which fields are updated in those matching entities depends on which fields are
            changed in entityWithNewValues. The new values of these fields are read from entityWithNewValues. 
 
    Namespace: 
   SD.LLBLGen.Pro.ORMSupportClasses
    Assembly:
   SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.10.0.0 (5.10.0)
Syntaxint UpdateMulti(
	IEntity entityWithNewValues,
	IPredicate updateFilter,
	IRelationCollection relations
)
Function UpdateMulti ( 
	entityWithNewValues As IEntity,
	updateFilter As IPredicate,
	relations As IRelationCollection
) As Integer
Parameters
- entityWithNewValues
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIEntity
entity instance which holds the new values for the matching entities to update. Only changed fields are taken 
            into account - updateFilter
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
A predicate or predicate expression which should be used as filter for the entities to update. - relations
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIRelationCollection
The set of relations to walk to construct the total query. 
Return Value
Type: 
Int32Amount of entities affected, if the used persistent storage has rowcounting enabled.
See Also