Symphony Framework
WheredBConnectors Enumeration
Example Example 
Symphony.dB Namespace : WheredBConnectors Enumeration
Define the connectors for multiple where clause operators.
Syntax
public enum WheredBConnectors : System.Enum 
Members
MemberDescription
ConnectAnd Connect using the "And" operator.
ConnectOr Connect using the "Or" operator.
None No connector. This is the initial selection criteria.
Example
Symphony.dB.DBAccess itemAccess1 = new DBAccess("ITEM", "DATABASE:DatabaseManager");
WheredB stringClause = new WheredB();
stringClause.Add("part_technical", WheredBConditions.Contains, "ISO 23345");
stringClause.Add(WheredBConnectors.ConnectAnd, "part_unit", WheredBConditions.EqualTo, "Ltr");
foreach (string item in itemAccess1.Select(stringClause))
{

}
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Symphony.dB.WheredBConnectors

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

Symphony.dB Namespace