Return the model computed primary key.
()
| 194 | |
| 195 | /** Return the model computed primary key. */ |
| 196 | static getComputedPrimaryKey(): string { |
| 197 | if (!this._primaryKey) { |
| 198 | this._primaryKey = this._findPrimaryKey(); |
| 199 | } |
| 200 | |
| 201 | return this._primaryKey; |
| 202 | } |
| 203 | |
| 204 | /** Return the field type of the primary key. */ |
| 205 | static getComputedPrimaryType(): FieldTypeString { |
no test coverage detected