コード例 #1
0
        public static string AsString(this SimpleTableFilterType type)
        {
            switch (type)
            {
            case SimpleTableFilterType.Const:
                return("CONST");

            case SimpleTableFilterType.Filter:
                return("FILTER");

            default:
                throw new ArgumentOutOfRangeException("type");
            }
        }
コード例 #2
0
 public TableRelationCondition(string fieldName, SimpleTableFilterType type, string value)
 {
     FieldName = fieldName;
     Type      = type;
     Value     = value;
 }
コード例 #3
0
 public TableFilterLine(string fieldName, SimpleTableFilterType type, string value)
 {
     FieldName = fieldName;
     Type      = type;
     Value     = value;
 }