* @inheritDoc EntityManager.insert
(
data: Entity | RequiredEntityData<Entity>,
options?: NativeInsertUpdateOptions<Entity>,
)
| 223 | * @inheritDoc EntityManager.insert |
| 224 | */ |
| 225 | async insert( |
| 226 | data: Entity | RequiredEntityData<Entity>, |
| 227 | options?: NativeInsertUpdateOptions<Entity>, |
| 228 | ): Promise<Primary<Entity>> { |
| 229 | return this.getEntityManager().insert(this.entityName, data, options); |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * @inheritDoc EntityManager.insert |
nothing calls this directly
no test coverage detected