Interface IDataContextOptions

Options for a data context.

interface IDataContextOptions {
    adapter: IDataAdapter;
    entities: EntityConfigurations;
    noDbNull?: Nilable<boolean>;
}

Hierarchy (view full)

Properties

adapter: IDataAdapter

The data adapter to use.

The configurations of all entities / tables.

noDbNull?: Nilable<boolean>

Indicates that the special value NULL should not be used by default.

Default

false

Generated using TypeDoc