Return the instance current value for its primary key.
()
| 952 | |
| 953 | /** Return the instance current value for its primary key. */ |
| 954 | private _getCurrentPrimaryKey() { |
| 955 | const model = this.constructor as ModelSchema; |
| 956 | return (this as any)[model.getComputedPrimaryKey()] as string; |
| 957 | } |
| 958 | |
| 959 | /** Create a new record for the model. |
| 960 | * |
no test coverage detected