예제 #1
0
        public QFieldJoinRelation(string  SrcTable, string  DestTable, string SrcKey, string  DestKey, FilterCondition filter)
        {
            _SrcTable	=	SrcTable;
            _DestTable	=	DestTable;

            _SrcKey		=	SrcKey;
            _DestKey		=	DestKey;

            _Filter	=	filter;
        }
예제 #2
0
 public void Add(FilterCondition condition)
 {
     this.List.Add(condition);
 }
예제 #3
0
        public QFieldJoinRelation(string SrcTable, string DestTable, string SrcKey, string DestKey, FilterCondition filter)
        {
            _SrcTable  = SrcTable;
            _DestTable = DestTable;

            _SrcKey  = SrcKey;
            _DestKey = DestKey;

            _Filter = filter;
        }
예제 #4
0
 public void Add(FilterCondition condition)
 {
     this.List.Add(condition);
 }
예제 #5
0
파일: QSqlMaker.cs 프로젝트: 0anion0/IBN
 public void AddFilter(FilterCondition Filter)
 {
     _WhereConditions.Add(Filter);
 }
예제 #6
0
파일: QSqlMaker.cs 프로젝트: alex765022/IBN
 public void AddFilter(FilterCondition Filter)
 {
     _WhereConditions.Add(Filter);
 }