Пример #1
0
 internal void AddPropertyDef(
     int aColumnIndex,
     string aPropertyName,
     string aColumnName,
     string aDBType,
     string aSystemType,
     KeyType aKeyType)
 {
     PropertyDef def = new PropertyDef(
                                     aPropertyName,
                                     aColumnIndex,
                                     aColumnName,
                                     aDBType,
                                     aSystemType,
                                     aKeyType);
     _List.Add(def);
 }
Пример #2
0
        internal void AddPropertyDef(
            int aColumnIndex,
            string aPropertyName,
            string aColumnName,
            string aDBType,
            string aSystemType,
            KeyType aKeyType,
            string aFKField,
            string aFKObject,
            string aFKRelation)
        {
            PropertyDef def = new PropertyDef(
                                            aPropertyName,
                                            aColumnIndex,
                                            aColumnName,
                                            aDBType,
                                            aSystemType,
                                            aKeyType);

            def.FKField = aFKField;
            def.FKObject = aFKObject;
            def.FKRelation = aFKRelation;

            _List.Add(def);
        }
Пример #3
0
 internal void AddPropertyDef(
     string aPropertyName,
     int aColumnIndex,
     string aColumnName)
 {
     PropertyDef def = new PropertyDef(
                                     aPropertyName,
                                     aColumnIndex,
                                     aColumnName);
     _List.Add(def);
 }