我有复合主键的表。我可以将其中一个提交为自动生成。
场景:我有一个teacher table
,包含字段techerId,名称,性别,角色,部门,等级,它有复合主要ID,包括角色,部门和等级。如何使teacherid成为自动生成的?
如果你通过THIS ANSWER,你会发现我们在Composite主键中没有自动增量属性。因此,解决方法是使用indexing
和unique constraint
的概念。像role
一样制作deptt
,grade
,indices
列,并将unique
约束设为true
。这将确保这三个值的对始终是唯一的(如primaryKey)。然后在实体中添加techerId
作为Primarykey
(autoGenerate = true)。你的entity
课程看起来像:
@Entity(tableName = "teacher",indices = arrayOf(Index(value = ["role","department","grade"],unique = true)))
public class Teacher{
@PrimaryKey(autoGenerate = true)
int teacher_id;
@ColumnInfo(name = "name")
String teacher_name;
//Rest of the fields
......
......
}