我有一个正在运行的应用程序,它的实体可能是:CustomerType1、CustomerType2 和 CustomerType3。
所有三个 CustomerType 实体可能具有完全不同的信息,但它们都有一个 CustomerID 字段,它是一个整数。
我试图弄清楚如何进行设置,以便无论创建哪种类型,CustomerID 在所有三种类型中都将始终是唯一的,并且仍然是整数。
例如,创建以下内容将导致以下 CustomerID
客户类型 1 - 1
客户类型 1 - 2
客户类型 1 - 3
客户类型 2 - 4
客户类型 1 - 5
客户类型 3 - 6
客户类型 1 - 7
解决这个问题的最佳方法是什么?