FindOptions<T, U, W>
Defined in: packages/rxdb/src/repository/query-options.interface.ts:46
Find 查询选项
Type Parameters
| Type Parameter | Default type |
|---|---|
T extends EntityType | EntityType |
U | RuleGroup<InstanceType<T>> |
W extends string | string |
Properties
limit?
optional limit: number;
Defined in: packages/rxdb/src/repository/query-options.interface.ts:58
获取数据量
Default
100
offset?
optional offset: number;
Defined in: packages/rxdb/src/repository/query-options.interface.ts:64
分页偏离量
Default
0
orderBy?
optional orderBy: OrderBy<W>[];
Defined in: packages/rxdb/src/repository/query-options.interface.ts:52
where
where: U;
Defined in: packages/rxdb/src/repository/query-options.interface.ts:51