Interface DatabaseAdapterFlavorDefinition

Defines a set interfaces for a entity database adapter flavor. An entity that uses a flavor will use the specified adapter for database accesses and the specified query context provider for providing query contexts.

interface DatabaseAdapterFlavorDefinition {
    adapterProvider: IEntityDatabaseAdapterProvider;
    queryContextProvider: EntityQueryContextProvider;
}

Properties

queryContextProvider: EntityQueryContextProvider