Symphony Framework
WheredB Constructor(String,WheredBConditions,Decimal)
Example 
Symphony.dB Namespace > WheredB Class > WheredB Constructor : WheredB Constructor(String,WheredBConditions,Decimal)
The name of the column/field to test against.
The condition to apply to the test.
The test value as a decimal.
Alternative constructor. Creates an instance of the WheredB class to provide selection criteria to a DBAccess.Select method call. Accepts the intial selection criteria.
Syntax

Parameters

fieldName
The name of the column/field to test against.
condition
The condition to apply to the test.
testValue
The test value as a decimal.
Example
Symphony.dB.DBAccess itemAccess2 = new DBAccess("ITEM", "DATABASE:DatabaseManager");
foreach (string item in itemAccess2.Select(new WheredB("part_cost", WheredBConditions.GreatThanOrEqualTo, 123.45M)))
{

}
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

WheredB Class
WheredB Members
Overload List