(id: string)
| 48 | return this._id ? em.getPlatform().normalizePrimaryKey<string>(this._id) : null; |
| 49 | }, |
| 50 | set(id: string): void { |
| 51 | this._id = id ? em.getPlatform().denormalizePrimaryKey(id) : null; |
| 52 | }, |
| 53 | configurable: true, |
| 54 | }); |
| 55 | } |
nothing calls this directly
no test coverage detected