本文介绍了如何在房间里制作组合钥匙的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚在房间里找到@PrimaryKey批注.那么,如果我想制作组合键,该怎么做?

I have just found @PrimaryKey annotation in room. So If I want to make composite key so how can I do that?

推荐答案

使用primaryKeys().

Room

Android开发人员文档状态:

使用Java的示例实现:

Example implementation in Java:

@Entity(primaryKeys = {"column1","column2","column3"})
class DummyClass {
    ...
}

Lalit Kushwah 为例.

这篇关于如何在房间里制作组合钥匙的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 09:14