| DynamicQueryEngineBaseAppendUpdateSetClauses Method (IListIEntityFieldCore, IListIFieldPersistenceInfo, DelimitedStringList, 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.1.0.0 (5.1.0)
Syntaxprotected void AppendUpdateSetClauses(
	IList<IEntityFieldCore> fieldsToUpdate,
	IList<IFieldPersistenceInfo> persistenceInfoFieldsToUpdate,
	DelimitedStringList destination,
	IList parameterCollection,
	bool emitFullFieldNames
)
Protected Sub AppendUpdateSetClauses ( 
	fieldsToUpdate As IList(Of IEntityFieldCore),
	persistenceInfoFieldsToUpdate As IList(Of IFieldPersistenceInfo),
	destination As DelimitedStringList,
	parameterCollection As IList,
	emitFullFieldNames As Boolean
)
Parameters
- fieldsToUpdate
 - Type: System.Collections.GenericIListIEntityFieldCore
The fields to update. - persistenceInfoFieldsToUpdate
 - Type: System.Collections.GenericIListIFieldPersistenceInfo
The persistence info fields to update. - destination
 - Type: SD.LLBLGen.Pro.ORMSupportClassesDelimitedStringList
The destination. - parameterCollection
 - Type: System.CollectionsIList
The parameter collection. - emitFullFieldNames
 - Type: SystemBoolean
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