Symphony Framework
Add(String) Method
Example 
Symphony.dB Namespace > OrderBydB Class > Add Method : Add(String) Method
The name of the column/field to sequence.
Add an order by element to the order-by collection.
Syntax
public void Add( 
   string fieldName
)

Parameters

fieldName
The name of the column/field to sequence.
Remarks
The default sequence is ascending.
Example
Symphony.dB.DBAccess PartAccess = new DBAccess("PART", "DATABASE:DatabaseManager");
OrderBydB partOrder = new OrderBydB("part_code");
partOrder.Add("Part_value");
foreach (string part in PartAccess.Select("part_code, part_description", partOrder))
{

}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

OrderBydB Class
OrderBydB Members
Overload List