Click or drag to resize

DynamicQueryEngineBase.AppendUpdateSetClauses Method (IList<IEntityFieldCore>, IList<IFieldPersistenceInfo>, QueryFragments, IList, Boolean)

Appends set clauses for an update query using the input specified to the destination list specified

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax
protected void AppendUpdateSetClauses(
	IList<IEntityFieldCore> fieldsToUpdate,
	IList<IFieldPersistenceInfo> persistenceInfoFieldsToUpdate,
	QueryFragments destination,
	IList parameterCollection,
	bool emitFullFieldNames
)

Parameters

fieldsToUpdate
Type: System.Collections.Generic.IList<IEntityFieldCore>
The fields to update.
persistenceInfoFieldsToUpdate
Type: System.Collections.Generic.IList<IFieldPersistenceInfo>
The persistence info fields to update.
destination
Type: SD.LLBLGen.Pro.ORMSupportClasses.QueryFragments
The destination.
parameterCollection
Type: System.Collections.IList
The parameter collection.
emitFullFieldNames
Type: System.Boolean
if set to true, fields will be prefixed with their source object name (table/alias). If false, it will simply emit the field name.
See Also