我正在使用Table.where() documentation page中的官方网页示例:
WhereClause
它根本不起作用。它无法找到"第一个"方法
返回Collection
。
它应该返回new
。
答案 0 :(得分:1)
仅适用于2.x版。文档提到了这一点,但只在评论中提到。我现在更新文档更清楚了。
我可以建议开始使用dexie@^2.0.0-beta.10,因为它已经有一段时间了。
public abstract class BaseRegistry {
@Autowired
PropertyConfig propertyConfig;
}
@Repository
public class OptionsRegistry extends BaseRegistry{
}
@Component
public class PropertyConfig {
}