Exemplo n.º 1
0
 public static Column TinyInt(string name, Identity identity, string description)
 {
     return(new Column(name, DataType.TinyInt, null, identity, false, description, false));
 }
Exemplo n.º 2
0
 public static Column Decimal(string name, PrecisionScale size, Identity identity, string description)
 {
     return(new Column(name, DataType.Decimal, size, identity, false, description, false));
 }