Click or drag to resize
RepositoryBulkOperationsStoreObjects Method (ObjectTypeInfo, IWhereCondition, Boolean, Boolean)
Stores all objects of the given type matching the where condition to CI repository.

Namespace: CMS.ContinuousIntegration.Internal
Assembly: CMS.ContinuousIntegration (in CMS.ContinuousIntegration.dll) Version: 10.0.0
Syntax
C#
public static void StoreObjects(
	ObjectTypeInfo typeInfo,
	IWhereCondition where,
	bool storeDependentObjects = true,
	bool rebuildConfiguration = false
)

Parameters

typeInfo
Type: CMS.DataEngineObjectTypeInfo
Type info of the object type to store
where
Type: CMS.DataEngineIWhereCondition
Where condition selecting objects to store
storeDependentObjects (Optional)
Type: SystemBoolean
Indicates whether to store all dependent objects of actually stored objects
rebuildConfiguration (Optional)
Type: SystemBoolean
Indicates whether current CI configuration should be rebuilt prior the store operation. Pass true value only when any change of DataClassInfo leads to store operation.
Remarks
Also processes and stores all objects that depend on objects specified by passed where condition.
See Also