Пример #1
0
 protected override void doAddWhereClause(List <String> conditionList, String columnName, ConditionValue value)
 {
     if (value.InScope == null)
     {
         return;
     }
     System.Collections.IList valueList        = value.InScope;
     System.Collections.IList checkedValueList = new System.Collections.Generic.List <Object>();
     foreach (Object checkTargetValue in valueList)
     {
         if (checkTargetValue == null)
         {
             continue;
         }
         checkedValueList.Add(checkTargetValue);
     }
     if (checkedValueList.Count == 0)
     {
         return;
     }
     conditionList.add(buildBindClause(columnName, value.getInScopeLocation(), "('a1', 'a2')"));
 }