EasyObjects.NET Programmers Reference

DynamicQuery.AddUpdateColumnWithValue Method 

The default result set for Query.Load is all of the columns in your Table or View. Once you call AddResultColumn this changes to only the columns you have added via this method. For instance, if you call AddResultColumn twice then only two columns will be returned in your result set.

public virtual void AddUpdateColumnWithValue(
   SchemaItem item,
   object paramValue
);

Parameters

item
A SchemaItem to add to the UPDATE statement
paramValue
The value to update the column to

See Also

DynamicQuery Class | NCI.EasyObjects Namespace