Returns a value as non NULL value.
NULL
The value to transform.
Is explicit (null) or not.
import { getDbValue, NULL as DbNull, Nullable } from '@egomobile/orm'const a: Nullable<number> = 0getDbValue(a) // 0const b: Nullable<number> = DbNullgetDbValue(b) // (null) Copy
import { getDbValue, NULL as DbNull, Nullable } from '@egomobile/orm'const a: Nullable<number> = 0getDbValue(a) // 0const b: Nullable<number> = DbNullgetDbValue(b) // (null)
Generated using TypeDoc
Returns a value as non
NULL
value.