Working through this step by step guide.
我正在尝试在BirthAppointment / tblAppointment之间创建继承。但是我需要将Discriminator属性设置为appCatId。
appCatId保存在tblAppointmentType中。我该如何访问它。
alt text http://www.zero7web.com/RegBook-linq.jpg
提前感谢您的帮助。
克莱尔
答案 0 :(得分:2)
我是否理解您希望BirthAppointment
继承tblAppointment
?如果是这种情况,discriminimnator属性是数据库表中的一个字段,用于区分表示tblAppointment
个对象与BirthAppointment
个对象的记录。因此,您无法使用appCatId
,因为它位于另一个表格中(tblAppointmentType
)。
答案 1 :(得分:0)
您需要使用Visual Studio Properties窗口。