Symphony Framework
WheredB Class
Members  Example 
Symphony.dB Namespace : WheredB Class
The WheredB class allows the definition of a where clause for the DBAccess.Select methods.
Syntax
public class WheredB 
Remarks
There are a number of ways to apply where conditions to the DBAccess.Select method.
Example
Symphony.dB.DBAccess itemAccess = new DBAccess("ITEM", "DATABASE:DatabaseManager");
WheredB clause = new WheredB();
clause.Add("part_description", WheredBConditions.Contains, "GOLD");
foreach (string item in itemAccess.Select(clause))
{

}
Inheritance Hierarchy

System.Object
   Symphony.dB.WheredB

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 Members
Symphony.dB Namespace