Symphony Framework
AddCustomExpression Method
Example 
Symphony.dB Namespace > WheredB Class : AddCustomExpression Method
Add a custom where clause expression.
Overload List
OverloadDescription
Add a custom where clause expression.  
Add an additional custom where clause expression.  
Example
Symphony.dB.DBAccess itemAccess = new DBAccess("ITEM", "DATABASE:DatabaseManager");
WheredB clause = new WheredB();
clause.AddCustomExpression("\"Description\" ilike " + "'metfin'");
foreach (string item in itemAccess.Select(clause))
{

}
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