私は果樹園を初めて使用し、http: //skywalkersoftwaredevelopment.net チュートリアルに従っています。
ContentDefinitionManager.AlterPartDefinition(typeof(AddressPart).Name, p => p
.Attachable(false)
.WithField("Name", f => f.OfType(typeof(TextField).Name))
.WithField("AddressLine1", f => f.OfType(typeof(TextField).Name))
.WithField("AddressLine2", f => f.OfType(typeof(TextField).Name))
.WithField("Zipcode", f => f.OfType(typeof(TextField).Name))
.WithField("City", f => f.OfType(typeof(TextField).Name))
.WithField("Country", f => f.OfType(typeof(TextField).Name))
);
SchemaBuilder.CreateTable("AddressRecord", t => t
.ContentPartRecord()
.Column<int>("CustomerId")
.Column<string>("Type", c => c.WithLength(50))
);
この場合、 withfield は実際には何を機能しますか? addressrecord テーブルの実際のテーブル フィールドを作成するための createtable がないのはなぜですか?
これらの「Name」、「addressline1」はデータベースのどこに保存されるはずですか?
お読みいただきありがとうございます。