id method

Upsert id(
  1. String id
)

Id is the auto-generated primary key that is set by the database. Adapter will request the database to return this column on inserts.

Implementation

Upsert id(String id) {
  _id = id;
  return this;
}