Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
DBにIDプロパティを自動的に作成させる方法はありますか?
次のようなものを生成したい:
Entity entity = schema.addEntity("MyEntity"); entity.addIdProperty().autoIncrement().primaryKey();
これは可能ですか?
はい、問題ないようです。必要に応じて、entity.addIdProperty() または entity.addIdProperty().autoIncrement() で問題ありません。addIdProperty はすでに primaryKey() を呼び出しています。