基本上我所拥有的是一张Customer
包含我们客户信息的表格。此表中的字段之一是Customer.CustomerTypeID
。
我也有一个CustomerType
表,它基本上是一个查找表。
我希望该CustomerType.CustomerTypeName
字段填充我的组合框,然后当我去保存我的记录时,我希望在CustomerType.CustomerTypeID
该字段CustomerType.CustomerTypeName
中更新我选择的。Customer.CustomerTypeID
我是否过于复杂了?我是否应该更改它以便将其存储CustomerName
在Customer
表中而不是 ID 中?
提前致谢。