Skip to main content
Version: Next

wrap

wraps entity type with WrappedEntity internal properties and helpers like init/isInitialized/populated/toJSON use preferHelper = true to have access to the internal __ properties like __meta or __em

Callable

  • wrap(entity: T, preferHelper: true): IWrappedEntityInternal<T>
  • wrap(entity: T, preferHelper?: false): IWrappedEntity<T>

  • returns WrappedEntity instance associated with this entity. This includes all the internal properties like __meta or __em.


    Parameters

    • entity: T
    • preferHelper: true

    Returns IWrappedEntityInternal<T>