예제 #1
0
파일: App.cs 프로젝트: NBakulin/DBShell
 public void AddStringAttribute(
     Table table,
     string name,
     bool isNullable = true,
     uint?length     = null)
 {
     _attributeService.AddString(
         table: table,
         name: name,
         sqlType: TSQLType.NVARCHAR,
         isNullable: isNullable,
         length: length);
 }