Options
All
  • Public
  • Public/Protected
  • All
Menu

Class ReferenceAbstract<T>

Type parameters

Hierarchy

Index

Properties

Accessors

Methods

Properties

FieldSetting

FieldSetting: ReferenceFieldSetting

Repository

Repository: BaseRepository

Protected _isDirty

_isDirty: boolean = false

Accessors

IsDirty

  • get IsDirty(): boolean

Methods

Search

  • Executes a search query to lookup possible values to the reference field

    Parameters

    • term: string

      This term will be searched in the _Text field

    • Default value top: number = 10

      The Top value for paging

    • Default value skip: number = 0

      The Skip value for paging

    • Default value odataParams: IODataParams<T> = {}

      The additional OData params (like select, expand, etc...)

    Returns FinializedQuery<T>

    The FinializedQuery instance that can be executed

    Example:

    reference.Search('Term').Exec().subscribe(hits=>{
         console.log(hits);
    });
    

Generated using TypeDoc