CursorProxy<PROXY> cursor = new CursorProxy<PROXY>(entity, session, indexCursor, classMeta, batchSize);
ReflectionUtil.putFieldValue(entity, field, cursor);
}
private String formRowKey(byte[] byteKey) {
Converter converter = ownerMeta.getIdField().getConverter();
Object objKey = converter.convertFromNoSql(byteKey);
String keyAsStr = converter.convertTypeToString(objKey);
//We ALWAYS ignore partition in this case since this index row is ALWAYS tied to this row period...moving it all
//would be a pain and be useless...
String rowKey = getMetaDbo().getIndexRowKey(null, null)+"/"+keyAsStr;
return rowKey;