Click or drag to resize
AbstractInfoProvider<TInfo, TProvider, TQuery>.UpdateData Method (IWhereCondition, IEnumerable<KeyValuePair<String, Object>>, Boolean)
Updates the data in the database based on the given where condition.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 11.0.0
Syntax
C#
protected virtual void UpdateData(
	IWhereCondition where,
	IEnumerable<KeyValuePair<string, Object>> values,
	bool useAPI = false
)

Parameters

where
Type: CMS.DataEngine.IWhereCondition
Where condition
values
Type: System.Collections.Generic.IEnumerable<KeyValuePair<String, Object>>
New values for the data. Dictionary of [columnName] => [value]
useAPI (Optional)
Type: System.Boolean
If true, data is updated using the API. If false, with bulk update query
See Also