Esempio n. 1
0
 public IEnumerable <T> GetByColumnAndTYpe(DBColumn column, DBConstraintType type)
 {
     return(Select(nameof(DBConstraint.ColumnName), CompareType.Equal, column.FullName).Where(p => p.Type == type));
 }
Esempio n. 2
0
 public override void SetValue(T target, DBConstraintType value) => target.Type = value;