How to Use TablePartial into another TablePartial

I create two TablePartials like as the image. But there are two issues. I did not figure out how I solve them.

TablePartial PrimaryKeyColumn {
  Id int [pk, increment]
}

TablePartial TestPartial {
  ~PrimaryKeyColumn
  Title nvarchar(100)
}

image

image