Пример #1
0
 public void AddFloatAttribute(
     Table table,
     string name,
     bool isNullable = true,
     int?bitCapacity = null)
 {
     _attributeService.AddRealNumber(
         table: table,
         name: name,
         sqlType: TSQLType.FLOAT,
         bitCapacity: bitCapacity,
         isNullable: isNullable);
 }