0
sean.alford created
It is our understanding that the RAD tool currently only supports a single surrogate ID for each entity.
I read here https://docs.abp.io/en/abp/latest/Entities that we can use the non-generic Entity class for Entities with composite keys. We would also need to use IRepository since IRepository<TEntity, TKey> only support a single TKey.
We have a mix of Entity types. Some use a single surrogate Id, while others require composite keys.
If we use the RAD Tool to scaffold out the code for an entity with a surrogate Id, what changes (files/classes) would we need to make to convert it to a composite key?