Esempio n. 1
0
        //private OrmProperty<TEntity> SetScale(int? value) { Scale = value; return this; }

        private OrmProperty <TEntity> SetLength(OrmBasicDataType basicDataType, OrmDataLengthType lengthType, int maxLength, bool isNotNull = false) =>
        SetBasicDataType(basicDataType).
        SetCharacterLengthType(lengthType).
        SetMaxLength(maxLength).
        SetIsNotNull(isNotNull);
Esempio n. 2
0
 private OrmProperty <TEntity> SetBasicDataType(OrmBasicDataType value)
 {
     BasicDataType = value; return(this);
 }