public static Column Float(string name, PrecisionScale size, Nullable nullable, string defaultExpression, string defaultConstraintName, string description) { return(new Column(name, DataType.Float, size, nullable, null, false, defaultExpression, defaultConstraintName, description, false)); }
public static Column Decimal(string name, PrecisionScale size, Identity identity, string description) { return(new Column(name, DataType.Decimal, size, identity, false, description, false)); }