Example #1
0
 public QField(string Name, string FriendlyName, string DBName, DbType DataType, QFieldUsingType UsingType)
 {
     _Name         = Name;
     _DBName       = DBName;
     _DataType     = DataType;
     _UsingType    = UsingType;
     _FriendlyName = FriendlyName;
 }
Example #2
0
 public QField(string Name, string FriendlyName,	string DBName,DbType DataType, QFieldUsingType UsingType)
 {
     _Name = Name;
     _DBName = DBName;
     _DataType = DataType;
     _UsingType = UsingType;
     _FriendlyName = FriendlyName;
 }
Example #3
0
 public QField(string Name, string FriendlyName, string DBName, DbType DataType, QFieldUsingType UsingType, QFieldJoinRelation[] Relations)
 {
     _Name         = Name;
     _DBName       = DBName;
     _DataType     = DataType;
     _UsingType    = UsingType;
     _Relations    = Relations;
     _FriendlyName = FriendlyName;
 }
Example #4
0
 public QField(string Name, string FriendlyName,string DBName, DbType DataType, QFieldUsingType UsingType, QFieldJoinRelation[] Relations)
 {
     _Name = Name;
     _DBName = DBName;
     _DataType = DataType;
     _UsingType = UsingType;
     _Relations = Relations;
     _FriendlyName = FriendlyName;
 }
Example #5
0
        public QField(string Name, string FriendlyName, string DBName, DbType DataType, QFieldUsingType UsingType, QFieldJoinRelation Relation, bool FieldValueIsKey)
        {
            _Name         = Name;
            _DBName       = DBName;
            _DataType     = DataType;
            _UsingType    = UsingType;
            _Relations    = new QFieldJoinRelation[] { Relation };
            _FriendlyName = FriendlyName;

            _FieldValueIsKey = FieldValueIsKey;
        }
Example #6
0
        public QField(string Name, string FriendlyName,string DBName, DbType DataType, QFieldUsingType UsingType, QFieldJoinRelation Relation, bool FieldValueIsKey)
        {
            _Name = Name;
            _DBName = DBName;
            _DataType = DataType;
            _UsingType = UsingType;
            _Relations	=	new QFieldJoinRelation[]{Relation};
            _FriendlyName = FriendlyName;

            _FieldValueIsKey = FieldValueIsKey;
        }