Open link2fun opened 6 days ago
@link2fun 2.0.102版本支持eq的entity模式指定使用field作为属性而不是默认的首字母小写
如果您是自行构建的eq实例那么可以选择替换服务
easyQueryClient = EasyQueryBootstrapper.defaultBuilderConfiguration()
.setDefaultDataSource(dataSource)
.optionConfigure(op -> {
op.setDeleteThrowError(false);
})
.useDatabaseConfigure(new MySQLDatabaseConfiguration())
//替换服务
.replaceService(PropertyDescriptorMatcher.class, EntityPropertyDescriptorMatcher.class)
.build();